mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-05 09:27:43 +00:00
gst-plugins-bad: add more config options
The recent update added some new plugins. This commit makes them selectable in buildroot. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
54b60ba6aa
commit
d6e9b16b37
@ -54,6 +54,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DCCP
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS
|
||||||
bool "debugutils"
|
bool "debugutils"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK
|
||||||
|
bool "decklink"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF
|
||||||
bool "dtmf"
|
bool "dtmf"
|
||||||
|
|
||||||
@ -117,6 +120,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LEGACYRESAMPLE
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB
|
||||||
bool "librfb"
|
bool "librfb"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LINSYS
|
||||||
|
bool "linsys"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER
|
||||||
bool "liveadder"
|
bool "liveadder"
|
||||||
|
|
||||||
@ -247,6 +253,10 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FBDEV
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FBDEV
|
||||||
bool "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
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON
|
||||||
bool "neon"
|
bool "neon"
|
||||||
select BR2_PACKAGE_NEON
|
select BR2_PACKAGE_NEON
|
||||||
|
@ -100,6 +100,12 @@ else
|
|||||||
GST_PLUGINS_BAD_CONF_OPT += --disable-debugutils
|
GST_PLUGINS_BAD_CONF_OPT += --disable-debugutils
|
||||||
endif
|
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)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF),y)
|
||||||
GST_PLUGINS_BAD_CONF_OPT += --enable-dtmf
|
GST_PLUGINS_BAD_CONF_OPT += --enable-dtmf
|
||||||
else
|
else
|
||||||
@ -232,6 +238,12 @@ else
|
|||||||
GST_PLUGINS_BAD_CONF_OPT += --disable-librfb
|
GST_PLUGINS_BAD_CONF_OPT += --disable-librfb
|
||||||
endif
|
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)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER),y)
|
||||||
GST_PLUGINS_BAD_CONF_OPT += --enable-liveadder
|
GST_PLUGINS_BAD_CONF_OPT += --enable-liveadder
|
||||||
else
|
else
|
||||||
@ -484,6 +496,13 @@ else
|
|||||||
GST_PLUGINS_BAD_CONF_OPT += --disable-fbdev
|
GST_PLUGINS_BAD_CONF_OPT += --disable-fbdev
|
||||||
endif
|
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)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON),y)
|
||||||
GST_PLUGINS_BAD_CONF_OPT += --enable-neon
|
GST_PLUGINS_BAD_CONF_OPT += --enable-neon
|
||||||
GST_PLUGINS_BAD_DEPENDENCIES += neon
|
GST_PLUGINS_BAD_DEPENDENCIES += neon
|
||||||
|
Loading…
x
Reference in New Issue
Block a user