mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
gst-plugins-good: make new dependency-less plugins configurable
gst-plugins-good gained a number of dependency-less plugins with the last update. This commit makes them configurable 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
61901bd74a
commit
7a3fa3efa1
@ -61,8 +61,11 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AVI
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CUTTER
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CUTTER
|
||||||
bool "cutter"
|
bool "cutter"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUG
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUGUTILS
|
||||||
bool "debug"
|
bool "debugutils"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEINTERLACE
|
||||||
|
bool "deinterlace"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV
|
||||||
bool "effectv"
|
bool "effectv"
|
||||||
@ -70,6 +73,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EQUALIZER
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EQUALIZER
|
||||||
bool "equalizer"
|
bool "equalizer"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLV
|
||||||
|
bool "flv"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX
|
||||||
bool "id3demux (*.mp3 audio)"
|
bool "id3demux (*.mp3 audio)"
|
||||||
|
|
||||||
@ -115,6 +121,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN
|
|||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTP
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTP
|
||||||
bool "rtp"
|
bool "rtp"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER
|
||||||
|
bool "rtpmanager"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP
|
||||||
bool "rtsp"
|
bool "rtsp"
|
||||||
|
|
||||||
@ -143,6 +152,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPARSE
|
|||||||
bool "wavparse (*.wav audio)"
|
bool "wavparse (*.wav audio)"
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4M
|
||||||
|
bool "y4m"
|
||||||
|
|
||||||
comment "plugins with external dependencies"
|
comment "plugins with external dependencies"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX
|
||||||
|
@ -10,8 +10,8 @@ GST_PLUGINS_GOOD_LIBTOOL_PATCH = NO
|
|||||||
|
|
||||||
GST_PLUGINS_GOOD_CONF_OPT = \
|
GST_PLUGINS_GOOD_CONF_OPT = \
|
||||||
$(DISABLE_NLS) \
|
$(DISABLE_NLS) \
|
||||||
|
--disable-debug \
|
||||||
--disable-examples \
|
--disable-examples \
|
||||||
--disable-directdraw \
|
|
||||||
--disable-directsound \
|
--disable-directsound \
|
||||||
--disable-sunaudio \
|
--disable-sunaudio \
|
||||||
--disable-osx_audio \
|
--disable-osx_audio \
|
||||||
@ -105,10 +105,16 @@ else
|
|||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-cutter
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-cutter
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUG),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUGUTILS),y)
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --enable-debug
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-debugutils
|
||||||
else
|
else
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-debug
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-debugutils
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEINTERLACE),y)
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-deinterlace
|
||||||
|
else
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-deinterlace
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV),y)
|
||||||
@ -123,6 +129,12 @@ else
|
|||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-equalizer
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-equalizer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLV),y)
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-flv
|
||||||
|
else
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-flv
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX),y)
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --enable-id3demux
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-id3demux
|
||||||
else
|
else
|
||||||
@ -213,6 +225,12 @@ else
|
|||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-rtp
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-rtp
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER),y)
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-rtpmanager
|
||||||
|
else
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-rtpmanager
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP),y)
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --enable-rtsp
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-rtsp
|
||||||
else
|
else
|
||||||
@ -267,6 +285,12 @@ else
|
|||||||
GST_PLUGINS_GOOD_CONF_OPT += --disable-wavparse
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-wavparse
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4M),y)
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-y4m
|
||||||
|
else
|
||||||
|
GST_PLUGINS_GOOD_CONF_OPT += --disable-y4m
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX),y)
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX),y)
|
||||||
GST_PLUGINS_GOOD_CONF_OPT += --enable-annodex
|
GST_PLUGINS_GOOD_CONF_OPT += --enable-annodex
|
||||||
GST_PLUGINS_GOOD_DEPENDENCIES += libxml2
|
GST_PLUGINS_GOOD_DEPENDENCIES += libxml2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user