diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-05-08 16:33:50 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-05-14 21:36:11 +0200 |
commit | 9f26421b0be2af36b5405608f4e7429b4bd7fbdb (patch) | |
tree | d2ab8b7edc77fd7d0cb6be7e8956982d2ffb7e06 /libavfilter/Makefile | |
parent | fb604ae8500d4ee7de6af61387c11618b3dea25b (diff) | |
download | ffmpeg-9f26421b0be2af36b5405608f4e7429b4bd7fbdb.tar.gz |
lavfi: add asyncts 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 df75bd5e74..a90d8a02b1 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -1,5 +1,6 @@ NAME = avfilter FFLIBS = avutil swscale +FFLIBS-$(CONFIG_ASYNCTS_FILTER) += avresample FFLIBS-$(CONFIG_MOVIE_FILTER) += avformat avcodec FFLIBS-$(CONFIG_RESAMPLE_FILTER) += avresample @@ -24,6 +25,7 @@ OBJS = allfilters.o \ OBJS-$(CONFIG_AFORMAT_FILTER) += af_aformat.o OBJS-$(CONFIG_ANULL_FILTER) += af_anull.o +OBJS-$(CONFIG_ASYNCTS_FILTER) += af_asyncts.o OBJS-$(CONFIG_RESAMPLE_FILTER) += af_resample.o OBJS-$(CONFIG_ANULLSRC_FILTER) += asrc_anullsrc.o |