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 <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2011-09-19 06:13:30 +02:00
parent 53e37840bf
commit b5875b9111
18 changed files with 1634 additions and 67 deletions

12
libswresample/Makefile Normal file
View File

@@ -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