]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
ffmpeg: consolidate duplicated config options
authorDanomi Manchego <danomimanchego123@gmail.com>
Tue, 9 Sep 2014 02:06:44 +0000 (22:06 -0400)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sun, 21 Sep 2014 20:48:34 +0000 (22:48 +0200)
Commit 62ab07ef769bd6504fe1db144aaac3fd45db9dad added a bunch
of hard-coded options.  Some of these options are then again
added (or negated) based on kconfig settings.  This patch removes
the hard coded swscale and postproc settings, as they are enabled
or disabled later.  It also moves the --disable-pic lower
as an else clause to the part that adds --enable-pic.

Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/ffmpeg/ffmpeg.mk

index d6851e1961c10ad46035aa2145c257c4216b4a0d..6339cca99b438323b53bb8ea3646132691f3d629 100644 (file)
@@ -22,15 +22,12 @@ FFMPEG_CONF_OPT = \
        --disable-debug \
        --disable-version3 \
        --enable-logging \
-       --disable-pic \
        --enable-optimizations \
        --disable-extra-warnings \
        --disable-ffprobe \
        --enable-avdevice \
        --enable-avcodec \
        --enable-avformat \
-       --enable-swscale \
-       --enable-postproc \
        --disable-x11grab \
        --enable-network \
        --disable-gray \
@@ -311,6 +308,8 @@ endif
 
 ifeq ($(BR2_PREFER_STATIC_LIB),)
 FFMPEG_CONF_OPT += --enable-pic
+else
+FFMPEG_CONF_OPT += --disable-pic
 endif
 
 FFMPEG_CONF_OPT += $(call qstrip,$(BR2_PACKAGE_FFMPEG_EXTRACONF))