diff options
author | Mina Nagy Zaki <mnzaki@gmail.com> | 2011-08-17 13:00:20 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-17 13:12:40 +0200 |
commit | 3a9e227fb178a938a833121b838559c8f545e740 (patch) | |
tree | 8e851f4b08286d285700e5ac713d924e8b3bee01 /libavfilter/Makefile | |
parent | 7c94740b84f95f4a1e3a70884dc1928ce3bc2570 (diff) | |
download | ffmpeg-3a9e227fb178a938a833121b838559c8f545e740.tar.gz |
lavfi: add aresample filter
Based on a patch by Stefano.
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index d29202b499..aa4654e207 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -2,6 +2,7 @@ include $(SUBDIR)../config.mak NAME = avfilter FFLIBS = avutil +FFLIBS-$(CONFIG_ARESAMPLE_FILTER) += avcodec FFLIBS-$(CONFIG_MOVIE_FILTER) += avformat avcodec FFLIBS-$(CONFIG_SCALE_FILTER) += swscale FFLIBS-$(CONFIG_MP_FILTER) += avcodec @@ -20,6 +21,7 @@ OBJS-$(CONFIG_AVCODEC) += avcodec.o OBJS-$(CONFIG_AFORMAT_FILTER) += af_aformat.o OBJS-$(CONFIG_ANULL_FILTER) += af_anull.o +OBJS-$(CONFIG_ARESAMPLE_FILTER) += af_aresample.o OBJS-$(CONFIG_ANULLSRC_FILTER) += asrc_anullsrc.o |