[MPlayer-cvslog] CVS: main/libaf Makefile,1.17,1.18 af.c,1.33,1.34

Jindrich Makovicka CVS syncmail at mplayerhq.hu
Sat Nov 20 15:41:53 CET 2004


CVS change done by Jindrich Makovicka CVS

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

Modified Files:
	Makefile af.c 
Log Message:
head related transfer function

Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/libaf/Makefile,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- Makefile	21 Oct 2004 12:10:55 -0000	1.17
+++ Makefile	20 Nov 2004 14:41:51 -0000	1.18
@@ -2,7 +2,10 @@
 
 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 af_surround.c af_sub.c af_export.c af_volnorm.c af_extrastereo.c af_lavcresample.c af_sweep.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 af_sub.c af_export.c af_volnorm.c af_extrastereo.c \
+af_lavcresample.c af_sweep.c af_hrtf.c
 
 OBJS=$(SRCS:.c=.o)
 

Index: af.c
===================================================================
RCS file: /cvsroot/mplayer/main/libaf/af.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- af.c	21 Oct 2004 12:10:55 -0000	1.33
+++ af.c	20 Nov 2004 14:41:51 -0000	1.34
@@ -27,6 +27,7 @@
 extern af_info_t af_info_extrastereo;
 extern af_info_t af_info_lavcresample;
 extern af_info_t af_info_sweep;
+extern af_info_t af_info_hrtf;
 
 static af_info_t* filter_list[]={ 
    &af_info_dummy,
@@ -50,6 +51,7 @@
    &af_info_lavcresample,
 #endif
    &af_info_sweep,
+   &af_info_hrtf,
    NULL 
 };
 




More information about the MPlayer-cvslog mailing list