From: Spenser Gilliland Date: Thu, 20 Jun 2013 22:07:42 +0000 (-0500) Subject: gst1-plugins-good: add libvpx support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=302c7539c97ff4fe68a39d46996abfaa0a45f310;p=buildroot.git gst1-plugins-good: add libvpx support adds libvpx support to gst1-plugins-good Signed-off-by: Spenser Gilliland Signed-off-by: Peter Korsgaard --- diff --git a/package/multimedia/gst1-plugins-good/Config.in b/package/multimedia/gst1-plugins-good/Config.in index 9b7eba0f06..e579539483 100644 --- a/package/multimedia/gst1-plugins-good/Config.in +++ b/package/multimedia/gst1-plugins-good/Config.in @@ -317,6 +317,10 @@ config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VPX help VP8 plugin +config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VPX + bool "vpx (webm)" + select BR2_PACKAGE_LIBVPX + config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_WAVPACK bool "wavpack (*.wv audio)" select BR2_PACKAGE_WAVPACK diff --git a/package/multimedia/gst1-plugins-good/gst1-plugins-good.mk b/package/multimedia/gst1-plugins-good/gst1-plugins-good.mk index f177ed1b4c..1e6d39b304 100644 --- a/package/multimedia/gst1-plugins-good/gst1-plugins-good.mk +++ b/package/multimedia/gst1-plugins-good/gst1-plugins-good.mk @@ -380,6 +380,13 @@ else GST1_PLUGINS_GOOD_CONF_OPT += --disable-speex endif +ifeq ($(BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VPX),y) +GST1_PLUGINS_GOOD_CONF_OPT += --enable-vpx +GST1_PLUGINS_GOOD_DEPENDENCIES += libvpx +else +GST1_PLUGINS_GOOD_CONF_OPT += --disable-vpx +endif + ifeq ($(BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_WAVPACK),y) GST1_PLUGINS_GOOD_CONF_OPT += --enable-wavpack GST1_PLUGINS_GOOD_DEPENDENCIES += wavpack