diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-28 08:56:52 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-28 08:56:52 +0000 |
commit | 15379c2bebd94903a7b8f932dc1c56ab5c0212b0 (patch) | |
tree | d73987cb3c00933419ba52f5740e2f687248a8ff /libavfilter/Makefile | |
parent | 46eed2c886cf4bb617164110608565bab0c9f132 (diff) | |
download | ffmpeg-15379c2bebd94903a7b8f932dc1c56ab5c0212b0.tar.gz |
Require libswscale only if the scale filter is used.
Although with several limitations, lavfi can be compiled and used
without the scale filter.
Originally committed as revision 24570 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 6f34ca96dc..feef16c2e3 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -1,7 +1,8 @@ include $(SUBDIR)../config.mak NAME = avfilter -FFLIBS = avcodec avcore avutil swscale +FFLIBS = avcodec avcore avutil +FFLIBS-$(CONFIG_SCALE_FILTER) += swscale HEADERS = avfilter.h |