diff options
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.patch | 35 |
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 0000000000..6299a475ab --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/bluez-fix-compilation-on-big-endian-systems.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | commit 1ab90f259fee4fa9a7c10dac0a1e85799a15881b | ||
2 | Author: Sebastian Dröge <slomo@circular-chaos.org> | ||
3 | Date: Wed Sep 25 20:25:03 2013 +0200 | ||
4 | |||
5 | bluez: Fix compilation on big endian systems | ||
6 | |||
7 | Upstream-Status: Backport | ||
8 | |||
9 | diff --git a/sys/bluez/gstavdtputil.c b/sys/bluez/gstavdtputil.c | ||
10 | index dea803a..ed5c276 100644 | ||
11 | --- a/sys/bluez/gstavdtputil.c | ||
12 | +++ b/sys/bluez/gstavdtputil.c | ||
13 | @@ -611,11 +611,11 @@ gst_avdtp_util_parse_aac_raw (void *config) | ||
14 | GValue value = G_VALUE_INIT; | ||
15 | GValue value_str = G_VALUE_INIT; | ||
16 | GValue list = G_VALUE_INIT; | ||
17 | + a2dp_aac_t aac_local = { 0 }; | ||
18 | + a2dp_aac_t *aac = &aac_local; | ||
19 | |||
20 | #if G_BYTE_ORDER == G_LITTLE_ENDIAN | ||
21 | uint8_t *raw = (uint8_t *) config; | ||
22 | - a2dp_aac_t aac_local = { 0 }; | ||
23 | - a2dp_aac_t *aac = &aac_local; | ||
24 | aac->object_type = raw[0]; | ||
25 | aac->frequency = (raw[1] << 4) | ((raw[2] & 0xFF) >> 4); | ||
26 | aac->channels = (raw[2] >> 2) & 0x3; | ||
27 | @@ -624,7 +624,7 @@ gst_avdtp_util_parse_aac_raw (void *config) | ||
28 | aac->bitrate = (raw[4] << 16) | (raw[3] << 8) | raw[4]; | ||
29 | aac->bitrate &= ~0x800000; | ||
30 | #elif G_BYTE_ORDER == G_BIG_ENDIAN | ||
31 | - *aac = (a2dp_aac_t *) config; | ||
32 | + *aac = *((a2dp_aac_t *) config); | ||
33 | #else | ||
34 | #error "Unknown byte order" | ||
35 | #endif | ||