summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad
diff options
context:
space:
mode:
authorCarlos Rafael Giani <dv@pseudoterminal.org>2013-11-16 21:23:57 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-20 14:03:32 +0000
commitc2cbe0f60e6d19ab9a8321be74d636d2c36671a8 (patch)
tree2bdb40fa526b09e9a9aa7e08f11afb5fd09d82c7 /meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad
parent7865ce6d805ba19ea32d2658cae65c9585c84539 (diff)
downloadast2050-yocto-poky-c2cbe0f60e6d19ab9a8321be74d636d2c36671a8.zip
ast2050-yocto-poky-c2cbe0f60e6d19ab9a8321be74d636d2c36671a8.tar.gz
gstreamer1.0: upgrade to 1.2.0
starting with this version, the recipes enable Orc acceleration by default (From OE-Core rev: 686ee2f13673d48d8c7666d4fa1806e98b037561) Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/bluez-fix-compilation-on-big-endian-systems.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/bluez-fix-compilation-on-big-endian-systems.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/bluez-fix-compilation-on-big-endian-systems.patch
new file mode 100644
index 0000000..6299a47
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/bluez-fix-compilation-on-big-endian-systems.patch
@@ -0,0 +1,35 @@
+commit 1ab90f259fee4fa9a7c10dac0a1e85799a15881b
+Author: Sebastian Dröge <slomo@circular-chaos.org>
+Date: Wed Sep 25 20:25:03 2013 +0200
+
+ bluez: Fix compilation on big endian systems
+
+Upstream-Status: Backport
+
+diff --git a/sys/bluez/gstavdtputil.c b/sys/bluez/gstavdtputil.c
+index dea803a..ed5c276 100644
+--- a/sys/bluez/gstavdtputil.c
++++ b/sys/bluez/gstavdtputil.c
+@@ -611,11 +611,11 @@ gst_avdtp_util_parse_aac_raw (void *config)
+ GValue value = G_VALUE_INIT;
+ GValue value_str = G_VALUE_INIT;
+ GValue list = G_VALUE_INIT;
++ a2dp_aac_t aac_local = { 0 };
++ a2dp_aac_t *aac = &aac_local;
+
+ #if G_BYTE_ORDER == G_LITTLE_ENDIAN
+ uint8_t *raw = (uint8_t *) config;
+- a2dp_aac_t aac_local = { 0 };
+- a2dp_aac_t *aac = &aac_local;
+ aac->object_type = raw[0];
+ aac->frequency = (raw[1] << 4) | ((raw[2] & 0xFF) >> 4);
+ aac->channels = (raw[2] >> 2) & 0x3;
+@@ -624,7 +624,7 @@ gst_avdtp_util_parse_aac_raw (void *config)
+ aac->bitrate = (raw[4] << 16) | (raw[3] << 8) | raw[4];
+ aac->bitrate &= ~0x800000;
+ #elif G_BYTE_ORDER == G_BIG_ENDIAN
+- *aac = (a2dp_aac_t *) config;
++ *aac = *((a2dp_aac_t *) config);
+ #else
+ #error "Unknown byte order"
+ #endif
OpenPOWER on IntegriCloud