diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-31 01:38:31 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-31 01:38:31 +0100 |
commit | 21b6991cd530bd207665e311ecd3d2e90171a1d8 (patch) | |
tree | 9f309c2d7269c75f06df190a6ddff8755b4430c7 | |
parent | 1f265f52050e967d78e29d8e115c7dc849b14c4e (diff) | |
download | ffmpeg-21b6991cd530bd207665e311ecd3d2e90171a1d8.tar.gz |
lavfi/Makefile: make FFLIBS list consistent.
-rw-r--r-- | libavfilter/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 34baa6d11e..c44f920747 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -2,20 +2,19 @@ include $(SUBDIR)../config.mak NAME = avfilter FFLIBS = avutil -FFLIBS-$(CONFIG_ASYNCTS_FILTER) += avresample -FFLIBS-$(CONFIG_RESAMPLE_FILTER) += avresample -FFLIBS-$(CONFIG_SCALE_FILTER) += swscale - FFLIBS-$(CONFIG_ACONVERT_FILTER) += swresample FFLIBS-$(CONFIG_AMOVIE_FILTER) += avformat avcodec FFLIBS-$(CONFIG_ARESAMPLE_FILTER) += swresample +FFLIBS-$(CONFIG_ASYNCTS_FILTER) += avresample FFLIBS-$(CONFIG_ATEMPO_FILTER) += avcodec FFLIBS-$(CONFIG_DECIMATE_FILTER) += avcodec FFLIBS-$(CONFIG_MOVIE_FILTER) += avformat avcodec +FFLIBS-$(CONFIG_MP_FILTER) += avcodec FFLIBS-$(CONFIG_PAN_FILTER) += swresample FFLIBS-$(CONFIG_PP_FILTER) += postproc FFLIBS-$(CONFIG_REMOVELOGO_FILTER) += avformat avcodec -FFLIBS-$(CONFIG_MP_FILTER) += avcodec +FFLIBS-$(CONFIG_RESAMPLE_FILTER) += avresample +FFLIBS-$(CONFIG_SCALE_FILTER) += swscale FFLIBS-$(CONFIG_SMARTBLUR_FILTER) += swscale HEADERS = asrc_abuffer.h \ |