Commit d6e9b16b authored by Sven Neumann's avatar Sven Neumann Committed by Peter Korsgaard
Browse files

gst-plugins-bad: add more config options



The recent update added some new plugins. This commit makes
them selectable in buildroot.

Signed-off-by: default avatarSven Neumann <s.neumann@raumfeld.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 54b60ba6
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -54,6 +54,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DCCP
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS
	bool "debugutils"

config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK
	bool "decklink"

config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF
	bool "dtmf"

@@ -117,6 +120,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LEGACYRESAMPLE
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB
	bool "librfb"

config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LINSYS
	bool "linsys"

config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER
	bool "liveadder"

@@ -247,6 +253,10 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FBDEV
	bool "fbdev"

config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBMMS
	bool "libmms"
	select BR2_PACKAGE_LIBMMS

config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON
	bool "neon"
	select BR2_PACKAGE_NEON
+19 −0
Original line number Diff line number Diff line
@@ -100,6 +100,12 @@ else
GST_PLUGINS_BAD_CONF_OPT += --disable-debugutils
endif

ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-decklink
else
GST_PLUGINS_BAD_CONF_OPT += --disable-decklink
endif

ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-dtmf
else
@@ -232,6 +238,12 @@ else
GST_PLUGINS_BAD_CONF_OPT += --disable-librfb
endif

ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LINSYS),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-linsys
else
GST_PLUGINS_BAD_CONF_OPT += --disable-linsys
endif

ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-liveadder
else
@@ -484,6 +496,13 @@ else
GST_PLUGINS_BAD_CONF_OPT += --disable-fbdev
endif

ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBMMS),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-libmms
GST_PLUGINS_BAD_DEPENDENCIES += libmms
else
GST_PLUGINS_BAD_CONF_OPT += --disable-libmms
endif

ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON),y)
GST_PLUGINS_BAD_CONF_OPT += --enable-neon
GST_PLUGINS_BAD_DEPENDENCIES += neon