From b5875b91113a0f3de6ad61e9ff8b74b81de94760 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 19 Sep 2011 06:13:30 +0200 Subject: Add libswresample. Similar to libswscale this does resampling and format convertion, just for audio instead of video. changing sampling rate, sample formats, channel layouts and sample packing all in one with a very simple public interface. Signed-off-by: Michael Niedermayer --- libswresample/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 libswresample/Makefile (limited to 'libswresample/Makefile') diff --git a/libswresample/Makefile b/libswresample/Makefile new file mode 100644 index 0000000000..33b8ea0c58 --- /dev/null +++ b/libswresample/Makefile @@ -0,0 +1,12 @@ +include $(SUBDIR)../config.mak + +NAME = swresample +FFLIBS = avutil + +HEADERS = swresample.h + +OBJS = swresample.o audioconvert.o resample2.o rematrix.o + +TESTPROGS = swresample_test + +include $(SUBDIR)../subdir.mak -- cgit v1.2.1