changeset 1136:8cf22270e0bf trunk

[svn] Move effect plugin handling out of the output plugins
author ertzing
date Sun, 27 May 2007 14:29:45 -0700
parents 1a6f46944e7b
children 48b586065895
files ChangeLog src/null/null.c
diffstat 2 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun May 27 14:28:52 2007 -0700
+++ b/ChangeLog	Sun May 27 14:29:45 2007 -0700
@@ -1,3 +1,10 @@
+2007-05-27 21:28:52 +0000  Ralf Ertzinger <ralf@skytale.net>
+  revision [2436]
+  Move effect plugin handling out of the output plugins
+  trunk/src/sun/audio.c |    2 ++
+  1 file changed, 2 insertions(+)
+
+
 2007-05-27 21:27:41 +0000  Ralf Ertzinger <ralf@skytale.net>
   revision [2434]
   Move effect plugin handling out of the output plugins
--- a/src/null/null.c	Sun May 27 14:28:52 2007 -0700
+++ b/src/null/null.c	Sun May 27 14:29:45 2007 -0700
@@ -151,10 +151,12 @@
 		started = TRUE;
 	}
 
+#if 0
 	if ((ep = get_current_effect_plugin()) != NULL &&
 	    effects_enabled() && ep->mod_samples)
 		ep->mod_samples(&ptr, length, input_format.format,
 				input_format.frequency, input_format.channels);
+#endif
 	
 	written += length;
 }