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 /common.mak | |
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 'common.mak')
-rw-r--r-- | common.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak index bad86fde3b..8dd24396d2 100644 --- a/common.mak +++ b/common.mak @@ -20,7 +20,7 @@ $(foreach VAR,$(SILENT),$(eval override $(VAR) = @$($(VAR)))) $(eval INSTALL = @$(call ECHO,INSTALL,$$(^:$(SRC_DIR)/%=%)); $(INSTALL)) endif -ALLFFLIBS = avcodec avdevice avfilter avformat avutil postproc swscale +ALLFFLIBS = avcodec avdevice avfilter avformat avutil postproc swscale swresample # NASM requires -I path terminated with / IFLAGS := -I. -I$(SRC_PATH)/ |