changeset 1132:3bf6c02fc73e trunk

[svn] Move effect plugin handling out of the output plugins
author ertzing
date Sun, 27 May 2007 14:26:15 -0700
parents d4889095afac
children 12a744b04174
files ChangeLog src/arts/audio.c
diffstat 2 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun May 27 14:25:46 2007 -0700
+++ b/ChangeLog	Sun May 27 14:26:15 2007 -0700
@@ -1,3 +1,10 @@
+2007-05-27 21:25:46 +0000  Ralf Ertzinger <ralf@skytale.net>
+  revision [2428]
+  Move effect plugin handling out of the output plugins
+  trunk/src/alsa/audio.c |    2 ++
+  1 file changed, 2 insertions(+)
+
+
 2007-05-27 04:15:27 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
   revision [2426]
   - fix crash on plugin shutdown
--- a/src/arts/audio.c	Sun May 27 14:25:46 2007 -0700
+++ b/src/arts/audio.c	Sun May 27 14:26:15 2007 -0700
@@ -276,6 +276,7 @@
 
 void artsxmms_write(gpointer ptr, int length)
 {
+#if 0
 	AFormat new_format;
 	int new_frequency, new_channels;
 	EffectPlugin *ep;
@@ -315,6 +316,7 @@
 		length = ep->mod_samples(&ptr, length, input_params.format,
 					 input_params.frequency,
 					 input_params.channels);
+#endif
 
 	if (arts_convert_func)
 		arts_convert_func(ptr, length);