summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMadhavan Krishnan <madhavan.krishnan@linaro.org>2020-03-10 08:31:20 +0100
committerAndrei Gherzan <andrei@gherzan.ro>2020-03-10 17:24:09 +0000
commitc5bc55687323a703aa21a0170f6509a1b04bd78b (patch)
tree1af81736e96bfba1b71301b9a39623f7dd4caa47
parentbf15756322a4960e8aaeb7b7a2fee3e3c4e726f4 (diff)
downloadmeta-raspberrypi-c5bc55687323a703aa21a0170f6509a1b04bd78b.tar.gz
gstreamer: Fix the compilation issue in meta multimedia image
When we tried to build the meta-multimedia-image, we faced the compilation issue with faad component. Since faad component has commercial license, we could not able to build with multimedia image. So we have modified the faad component to be included when commercial licenese is supported. Signed-off-by: Madhavan Krishnan <madhavan.krishnan@linaro.org>
-rw-r--r--recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend3
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend
index 899a2d4..8ab1510 100644
--- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend
+++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend
@@ -1 +1,2 @@
1PACKAGECONFIG_append_rpi = " hls libmms faad" 1PACKAGECONFIG_append_rpi = " hls libmms \
2 ${@bb.utils.contains('LICENSE_FLAGS_WHITELIST', 'commercial', 'faad', '', d)}"