mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-05 17:37:43 +00:00
gst-plugins-bad: make more dependency-less plugins configurable
The latest update added a few new plugins that were missing from the buildroot configuration system. This commit makes these dependency-less plugins configurable. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
b92bcae699
commit
5a5992b7f1
4
CHANGES
4
CHANGES
@ -3,8 +3,8 @@
|
|||||||
New packages: tcpreplay, hostapd
|
New packages: tcpreplay, hostapd
|
||||||
|
|
||||||
Updated/fixed packages: autoconf, bind, binutils, busybox,
|
Updated/fixed packages: autoconf, bind, binutils, busybox,
|
||||||
directfb, iw, libfuse, libpcap, lighttpd, mesa, pcre, sshfs,
|
directfb, gst-plugins-bad, iw, libfuse, libpcap, lighttpd,
|
||||||
usbutils
|
mesa, pcre, sshfs, usbutils
|
||||||
|
|
||||||
Issues resolved (http://bugs.uclibc.org):
|
Issues resolved (http://bugs.uclibc.org):
|
||||||
|
|
||||||
|
@ -21,6 +21,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AIFFPARSE
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AMRPARSE
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AMRPARSE
|
||||||
bool "amrparse"
|
bool "amrparse"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ASFMUX
|
||||||
|
bool "asfmux"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT
|
||||||
bool "autoconvert"
|
bool "autoconvert"
|
||||||
|
|
||||||
@ -54,9 +57,15 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FESTIVAL
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEZE
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEZE
|
||||||
bool "freeze"
|
bool "freeze"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREI0R
|
||||||
|
bool "frei0r"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE
|
||||||
bool "h264parse"
|
bool "h264parse"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HDVPARSE
|
||||||
|
bool "hdvparse"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB
|
||||||
bool "librfb"
|
bool "librfb"
|
||||||
|
|
||||||
@ -114,6 +123,9 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDP
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SELECTOR
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SELECTOR
|
||||||
bool "selector"
|
bool "selector"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SHAPEWIPE
|
||||||
|
bool "shapewipe"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN
|
||||||
bool "siren"
|
bool "siren"
|
||||||
|
|
||||||
|
@ -33,6 +33,12 @@ else
|
|||||||
GST_PLUGINS_BAD_CONF_OPT += --disable-amrparse
|
GST_PLUGINS_BAD_CONF_OPT += --disable-amrparse
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ASFMUX),y)
|
||||||
|
GST_PLUGINS_BAD_CONF_OPT += --enable-asfmux
|
||||||
|
else
|
||||||
|
GST_PLUGINS_BAD_CONF_OPT += --disable-asfmux
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT),y)
|
||||||
GST_PLUGINS_BAD_CONF_OPT += --enable-autoconvert
|
GST_PLUGINS_BAD_CONF_OPT += --enable-autoconvert
|
||||||
else
|
else
|
||||||
@ -99,12 +105,24 @@ else
|
|||||||
GST_PLUGINS_BAD_CONF_OPT += --disable-freeze
|
GST_PLUGINS_BAD_CONF_OPT += --disable-freeze
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREI0R),y)
|
||||||
|
GST_PLUGINS_BAD_CONF_OPT += --enable-frei0r
|
||||||
|
else
|
||||||
|
GST_PLUGINS_BAD_CONF_OPT += --disable-frei0r
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE),y)
|
||||||
GST_PLUGINS_BAD_CONF_OPT += --enable-h264parse
|
GST_PLUGINS_BAD_CONF_OPT += --enable-h264parse
|
||||||
else
|
else
|
||||||
GST_PLUGINS_BAD_CONF_OPT += --disable-h264parse
|
GST_PLUGINS_BAD_CONF_OPT += --disable-h264parse
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HDVPARSE),y)
|
||||||
|
GST_PLUGINS_BAD_CONF_OPT += --enable-hdvparse
|
||||||
|
else
|
||||||
|
GST_PLUGINS_BAD_CONF_OPT += --disable-hdvparse
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB),y)
|
||||||
GST_PLUGINS_BAD_CONF_OPT += --enable-librfb
|
GST_PLUGINS_BAD_CONF_OPT += --enable-librfb
|
||||||
else
|
else
|
||||||
@ -219,6 +237,12 @@ else
|
|||||||
GST_PLUGINS_BAD_CONF_OPT += --disable-selector
|
GST_PLUGINS_BAD_CONF_OPT += --disable-selector
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SHAPEWIPE),y)
|
||||||
|
GST_PLUGINS_BAD_CONF_OPT += --enable-shapewipe
|
||||||
|
else
|
||||||
|
GST_PLUGINS_BAD_CONF_OPT += --disable-shapewipe
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN),y)
|
||||||
GST_PLUGINS_BAD_CONF_OPT += --enable-siren
|
GST_PLUGINS_BAD_CONF_OPT += --enable-siren
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user