Commit 3d3dcd93 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

gst-plugins-good: add wavpack + gdkpixbuf options



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

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent d3ffea31
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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
+14 −0
Original line number Diff line number Diff line
@@ -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))