gst-plugins-good: add wavpack + gdkpixbuf options

Based on patch by Bogdan Radulescu <bogdan_radulescu99@yahoo.com>

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2013-01-14 14:15:02 +01:00
parent d3ffea3103
commit 3d3dcd932b
2 changed files with 22 additions and 0 deletions

View File

@ -186,6 +186,10 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLAC
bool "flac (libFLAC)"
select BR2_PACKAGE_FLAC
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GDKPIXBUF
bool "gdkpixbuf"
select BR2_PACKAGE_GDK_PIXBUF
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS
bool "ossaudio (OSS audio)"
@ -205,4 +209,8 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SPEEX
bool "speex"
select BR2_PACKAGE_SPEEX
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPACK
bool "wavpack (*.wv audio)"
select BR2_PACKAGE_WAVPACK
endif

View File

@ -342,6 +342,13 @@ else
GST_PLUGINS_GOOD_CONF_OPT += --disable-flac
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GDKPIXBUF),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-gdk_pixbuf
GST_PLUGINS_GOOD_DEPENDENCIES += gdk-pixbuf
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-gdk_pixbuf
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-oss
else
@ -375,4 +382,11 @@ else
GST_PLUGINS_GOOD_CONF_OPT += --disable-speex
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPACK),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-wavpack
GST_PLUGINS_GOOD_DEPENDENCIES += wavpack
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-wavpack
endif
$(eval $(autotools-package))