[Mplayer-cvslog] CVS: main/libaf Makefile,1.7,1.8 af.c,1.20,1.21

Tobias Diedrich CVS ranma at mplayerhq.hu
Tue Dec 31 16:14:17 CET 2002


Update of /cvsroot/mplayer/main/libaf
In directory mail:/var/tmp.root/cvs-serv21019

Modified Files:
	Makefile af.c 
Log Message:
Port of pl_surround.c to af-layer.


Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/libaf/Makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- Makefile	28 Dec 2002 13:59:53 -0000	1.7
+++ Makefile	31 Dec 2002 15:14:13 -0000	1.8
@@ -2,7 +2,7 @@
 
 LIBNAME = libaf.a
 
-SRCS=af.c af_mp.c af_dummy.c af_delay.c af_channels.c af_format.c af_resample.c window.c filter.c af_volume.c af_equalizer.c af_tools.c af_comp.c af_gate.c af_pan.c
+SRCS=af.c af_mp.c af_dummy.c af_delay.c af_channels.c af_format.c af_resample.c window.c filter.c af_volume.c af_equalizer.c af_tools.c af_comp.c af_gate.c af_pan.c af_surround.c
 
 OBJS=$(SRCS:.c=.o)
 

Index: af.c
===================================================================
RCS file: /cvsroot/mplayer/main/libaf/af.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- af.c	28 Dec 2002 13:59:53 -0000	1.20
+++ af.c	31 Dec 2002 15:14:13 -0000	1.21
@@ -19,6 +19,7 @@
 extern af_info_t af_info_gate;
 extern af_info_t af_info_comp;
 extern af_info_t af_info_pan;
+extern af_info_t af_info_surround;
 
 static af_info_t* filter_list[]={ \
    &af_info_dummy,\
@@ -31,6 +32,7 @@
    &af_info_gate,\
    &af_info_comp,\
    &af_info_pan,\
+   &af_info_surround,\
    NULL \
 };
 




More information about the MPlayer-cvslog mailing list