gst-plugins-good: update configuration options

Update the list of plugins that can be selected/deselected.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Sven Neumann 2011-07-14 09:27:32 +02:00 committed by Peter Korsgaard
parent cae6d2397b
commit 9683d4f11a
2 changed files with 27 additions and 0 deletions

View File

@ -82,6 +82,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ICYDEMUX config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ICYDEMUX
bool "icydemux" bool "icydemux"
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_IMAGEFREEZE
bool "imagefreeze"
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_INTERLEAVE config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_INTERLEAVE
bool "interleave" bool "interleave"
@ -127,6 +130,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP
bool "rtsp" bool "rtsp"
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SHAPEWIPE
bool "shapewipe"
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SMPTE config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SMPTE
bool "smpte" bool "smpte"
@ -180,6 +186,9 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLAC
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS
bool "ossaudio (OSS audio)" bool "ossaudio (OSS audio)"
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS4
bool "oss4 (Open Sound System 4)"
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC
bool "souphttpsrc (http client)" bool "souphttpsrc (http client)"
select BR2_PACKAGE_LIBSOUP select BR2_PACKAGE_LIBSOUP

View File

@ -144,6 +144,12 @@ else
GST_PLUGINS_GOOD_CONF_OPT += --disable-icydemux GST_PLUGINS_GOOD_CONF_OPT += --disable-icydemux
endif endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_IMAGEFREEZE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-imagefreeze
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-imagefreeze
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_INTERLEAVE),y) ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_INTERLEAVE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-interleave GST_PLUGINS_GOOD_CONF_OPT += --enable-interleave
else else
@ -234,6 +240,12 @@ else
GST_PLUGINS_GOOD_CONF_OPT += --disable-rtsp GST_PLUGINS_GOOD_CONF_OPT += --disable-rtsp
endif endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SHAPEWIPE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-shapewipe
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-shapewipe
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SMPTE),y) ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SMPTE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-smpte GST_PLUGINS_GOOD_CONF_OPT += --enable-smpte
else else
@ -321,6 +333,12 @@ else
GST_PLUGINS_GOOD_CONF_OPT += --disable-oss GST_PLUGINS_GOOD_CONF_OPT += --disable-oss
endif endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS4),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-oss4
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-oss4
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC),y) ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-soup GST_PLUGINS_GOOD_CONF_OPT += --enable-soup
GST_PLUGINS_GOOD_DEPENDENCIES += libsoup GST_PLUGINS_GOOD_DEPENDENCIES += libsoup