[FFmpeg-cvslog] r24570 - trunk/libavfilter/Makefile
stefano
subversion
Wed Jul 28 10:56:53 CEST 2010
Author: stefano
Date: Wed Jul 28 10:56:52 2010
New Revision: 24570
Log:
Require libswscale only if the scale filter is used.
Although with several limitations, lavfi can be compiled and used
without the scale filter.
Modified:
trunk/libavfilter/Makefile
Modified: trunk/libavfilter/Makefile
==============================================================================
--- trunk/libavfilter/Makefile Wed Jul 28 10:56:49 2010 (r24569)
+++ trunk/libavfilter/Makefile Wed Jul 28 10:56:52 2010 (r24570)
@@ -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
More information about the ffmpeg-cvslog
mailing list