diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-05-04 15:09:17 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-05-12 18:09:28 +0200 |
commit | d371e7b9885aabdb29c038fa723bc890276aa366 (patch) | |
tree | 2474b1ad15442bca7a1dfeb0673e30a7d10c1660 /libavfilter/Makefile | |
parent | ea60dfe284b82fc74569bbd562e68ec48f69f154 (diff) | |
download | ffmpeg-d371e7b9885aabdb29c038fa723bc890276aa366.tar.gz |
lavfi: add lavr-based audio resampling filter.
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 49a47d3e1b..9cbb90847f 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -1,6 +1,7 @@ NAME = avfilter FFLIBS = avutil swscale FFLIBS-$(CONFIG_MOVIE_FILTER) += avformat avcodec +FFLIBS-$(CONFIG_RESAMPLE_FILTER) += avresample HEADERS = avfilter.h \ avfiltergraph.h \ @@ -22,6 +23,7 @@ OBJS = allfilters.o \ vsrc_buffer.o \ OBJS-$(CONFIG_ANULL_FILTER) += af_anull.o +OBJS-$(CONFIG_RESAMPLE_FILTER) += af_resample.o OBJS-$(CONFIG_ANULLSRC_FILTER) += asrc_anullsrc.o |