diff libaf/Makefile @ 8167:e8832e66babd

New features: -- Support for runtime cpu detection -- Stand alone compile of libaf -- Unlimited number of channels (compiletime switch) -- Sample format defined by bit-fields -- New formats: float, A-Law and mu-law -- Format conversion set in human readable format i.e. format=4:us_be to set 32 bit unsigned big endian output -- Format reporting in human readable format -- Volume control has only one parameter for setting the volume i.e. volume=-10.0:1:0:1 to set atenuation = -10dB
author anders
date Tue, 12 Nov 2002 12:33:56 +0000
parents c0e556f9986b
children 97e8dfe61ab1
line wrap: on
line diff
--- a/libaf/Makefile	Tue Nov 12 12:23:32 2002 +0000
+++ b/libaf/Makefile	Tue Nov 12 12:33:56 2002 +0000
@@ -2,7 +2,7 @@
 
 LIBNAME = libaf.a
 
-SRCS=af.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
+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 
 
 OBJS=$(SRCS:.c=.o)
 
@@ -15,7 +15,7 @@
 $(LIBNAME):     $(OBJS) Makefile
 	$(AR) r $(LIBNAME) $(OBJS)
 
-$(OBJS):af.h control.h dsp.h filter.h window.h
+$(OBJS):af.h control.h dsp.h filter.h window.h af_mp.h
 
 all:    $(LIBNAME)