diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-19 06:13:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-19 07:04:17 +0200 |
commit | b5875b91113a0f3de6ad61e9ff8b74b81de94760 (patch) | |
tree | b33f19a81ebe0d3145368f0d6494f4f4aab75aba /libswresample/Makefile | |
parent | 53e37840bf205a24c3b3ad6d838805dc54a905bf (diff) | |
download | ffmpeg-b5875b91113a0f3de6ad61e9ff8b74b81de94760.tar.gz |
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>
Diffstat (limited to 'libswresample/Makefile')
-rw-r--r-- | libswresample/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
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 |