diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-03-30 14:15:52 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-03-30 19:39:25 +0200 |
commit | 04236c4a30f57638ef3e162b54b16ede63045dac (patch) | |
tree | 57789e88d979bb9872f14718b47aec52f8006f5c | |
parent | bd2b84e241e3f1ee135ad9b3ec43dbca25647d25 (diff) | |
download | buildroot-04236c4a30f57638ef3e162b54b16ede63045dac.tar.gz buildroot-04236c4a30f57638ef3e162b54b16ede63045dac.zip |
gst1-libav: pass --cpu config option to bundled ffmpeg
Like the proper ffmpeg package does, fixes:
http://autobuild.buildroot.net/results/a46/a462dae8df2450bc0f72cbed6125e106454bde0f/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/gstreamer1/gst1-libav/gst1-libav.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/package/gstreamer1/gst1-libav/gst1-libav.mk b/package/gstreamer1/gst1-libav/gst1-libav.mk index 496190eaa0..8f892d0883 100644 --- a/package/gstreamer1/gst1-libav/gst1-libav.mk +++ b/package/gstreamer1/gst1-libav/gst1-libav.mk @@ -7,9 +7,7 @@ GST1_LIBAV_VERSION = 1.8.0 GST1_LIBAV_SOURCE = gst-libav-$(GST1_LIBAV_VERSION).tar.xz GST1_LIBAV_SITE = http://gstreamer.freedesktop.org/src/gst-libav - GST1_LIBAV_DEPENDENCIES = host-pkgconf gstreamer1 gst1-plugins-base - GST1_LIBAV_CONF_EXTRA_OPTS = --cross-prefix=$(TARGET_CROSS) --target-os=linux ifeq ($(BR2_PACKAGE_ZLIB),y) @@ -26,6 +24,13 @@ else GST1_LIBAV_CONF_EXTRA_OPTS += --disable-bzlib endif +# Generic CPU setup for bundled ffmpeg +ifneq ($(call qstrip,$(BR2_GCC_TARGET_CPU)),) +GST1_LIBAV_CONF_EXTRA_OPTS += --cpu=$(BR2_GCC_TARGET_CPU) +else ifneq ($(call qstrip,$(BR2_GCC_TARGET_ARCH)),) +GST1_LIBAV_CONF_EXTRA_OPTS += --cpu=$(BR2_GCC_TARGET_ARCH) +endif + ifeq ($(BR2_X86_CPU_HAS_MMX),y) GST1_LIBAV_CONF_EXTRA_OPTS += --enable-yasm GST1_LIBAV_DEPENDENCIES += host-yasm |