Commit 61cef6db authored by Thomas De Schampheleire's avatar Thomas De Schampheleire Committed by Peter Korsgaard
Browse files

gstreamer packages: factorize dependency on gstreamer

parent 5582d5c7
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
# Gstreamer 0.10.x & Plugins
source "package/gstreamer/gstreamer/Config.in"

if BR2_PACKAGE_GSTREAMER
source "package/gstreamer/gst-plugins-base/Config.in"
source "package/gstreamer/gst-plugins-good/Config.in"
source "package/gstreamer/gst-plugins-bad/Config.in"
@@ -9,3 +11,4 @@ source "package/gstreamer/gst-dsp/Config.in"
source "package/gstreamer/gst-fsl-plugins/Config.in"
source "package/gstreamer/gst-omapfb/Config.in"
source "package/gstreamer/gst-plugin-x170/Config.in"
endif
+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_GST_DSP
	bool "gst-dsp"
	depends on BR2_PACKAGE_GSTREAMER && BR2_cortex_a8
	depends on BR2_cortex_a8
	select BR2_PACKAGE_TIDSP_BINARIES
	help
	  GStreamer plug-in to access TI OMAP3 DSP algorithms.
+0 −2
Original line number Diff line number Diff line
config BR2_PACKAGE_GST_FFMPEG
	bool "gst-ffmpeg"
	depends on BR2_PACKAGE_GSTREAMER
	select BR2_PACKAGE_GST_PLUGINS_BASE
	select BR2_PACKAGE_FFMPEG
	select BR2_PACKAGE_FFMPEG_GPL
@@ -14,5 +13,4 @@ config BR2_PACKAGE_GST_FFMPEG
	  http://gstreamer.freedesktop.org/

comment "gst-ffmpeg needs a toolchain w/ largefile, IPv6"
	depends on BR2_PACKAGE_GSTREAMER
	depends on !(BR2_LARGEFILE && BR2_INET_IPV6)
+1 −2
Original line number Diff line number Diff line
comment "gst-fsl-plugins needs an imx-specific Linux kernel to be built"
	depends on BR2_arm && BR2_PACKAGE_GSTREAMER && !BR2_LINUX_KERNEL
	depends on BR2_arm && !BR2_LINUX_KERNEL

config BR2_PACKAGE_GST_FSL_PLUGINS
	bool "gst-fsl-plugins"
	depends on BR2_LINUX_KERNEL
	depends on BR2_arm # Only relevant for i.MX
	depends on BR2_PACKAGE_GSTREAMER
	select BR2_PACKAGE_GST_PLUGINS_BASE
	select BR2_PACKAGE_LIBFSLVPUWRAP
	select BR2_PACKAGE_IMX_LIB
+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_GST_OMAPFB
	bool "gst-omapfb"
	depends on BR2_PACKAGE_GSTREAMER && BR2_cortex_a8
	depends on BR2_cortex_a8
	help
	  GStreamer plug-in to use OMAP framebuffer.

Loading