[MPlayer-cvslog] CVS: main/libaf af.c,1.41,1.42

Alex Beregszaszi syncmail at mplayerhq.hu
Mon Feb 21 18:14:02 CET 2005


CVS change done by Alex Beregszaszi

Update of /cvsroot/mplayer/main/libaf
In directory mail:/var2/tmp/cvs-serv9658

Modified Files:
	af.c 
Log Message:
filter for adding a center channel, adding a high pass filter would be nice

Index: af.c
===================================================================
RCS file: /cvsroot/mplayer/main/libaf/af.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- af.c	22 Jan 2005 10:47:58 -0000	1.41
+++ af.c	21 Feb 2005 17:14:00 -0000	1.42
@@ -7,7 +7,6 @@
 #endif
 
 #include "af.h"
-#include "../config.h"
 
 // Static list of filters
 extern af_info_t af_info_dummy;
@@ -29,6 +28,7 @@
 extern af_info_t af_info_sweep;
 extern af_info_t af_info_hrtf;
 extern af_info_t af_info_ladspa;
+extern af_info_t af_info_center;
 
 static af_info_t* filter_list[]={ 
    &af_info_dummy,
@@ -56,6 +56,7 @@
 #ifdef HAVE_LADSPA
    &af_info_ladspa,
 #endif
+   &af_info_center,
    NULL 
 };
 




More information about the MPlayer-cvslog mailing list