From 89c3875bf7c208c841179cfaf106dd22fe90d474 Mon Sep 17 00:00:00 2001 From: Cristian Iorga Date: Fri, 3 Jan 2014 09:14:34 +0000 Subject: gstreamer1.0-plugins-bad: upgrade to 1.2.2 bluez-fix-compilation-on-big-endian-systems.patch removed, included in upstream. (From OE-Core rev: 44f3a507626d7208caffa18663dd8efab4142bb3) Signed-off-by: Cristian Iorga Signed-off-by: Richard Purdie --- ...uez-fix-compilation-on-big-endian-systems.patch | 35 ---------------------- .../gstreamer/gstreamer1.0-plugins-bad_1.2.0.bb | 14 --------- .../gstreamer/gstreamer1.0-plugins-bad_1.2.2.bb | 12 ++++++++ 3 files changed, 12 insertions(+), 49 deletions(-) delete mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/bluez-fix-compilation-on-big-endian-systems.patch delete mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.2.0.bb create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.2.2.bb (limited to 'meta/recipes-multimedia') 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 deleted file mode 100644 index 6299a475ab..0000000000 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/bluez-fix-compilation-on-big-endian-systems.patch +++ /dev/null @@ -1,35 +0,0 @@ -commit 1ab90f259fee4fa9a7c10dac0a1e85799a15881b -Author: Sebastian Dröge -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 diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.2.0.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.2.0.bb deleted file mode 100644 index d9e3b487df..0000000000 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.2.0.bb +++ /dev/null @@ -1,14 +0,0 @@ -include gstreamer1.0-plugins-bad.inc - -LIC_FILES_CHKSUM = "file://COPYING;md5=73a5855a8119deb017f5f13cf327095d \ - file://gst/tta/filters.h;beginline=12;endline=29;md5=8a08270656f2f8ad7bb3655b83138e5a \ - file://COPYING.LIB;md5=21682e4e8fea52413fd26c60acb907e5 \ - file://gst/tta/crc32.h;beginline=12;endline=29;md5=27db269c575d1e5317fffca2d33b3b50" - -SRC_URI[md5sum] = "4fd078e1b9d903d22b67872b616f1715" -SRC_URI[sha256sum] = "a12fac6c106a7e4ae8bb2c7da508688d7db532b818319df2202f497cbd930afa" - -SRC_URI += "file://bluez-fix-compilation-on-big-endian-systems.patch" - -S = "${WORKDIR}/gst-plugins-bad-${PV}" - diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.2.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.2.2.bb new file mode 100644 index 0000000000..da711702a3 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.2.2.bb @@ -0,0 +1,12 @@ +include gstreamer1.0-plugins-bad.inc + +LIC_FILES_CHKSUM = "file://COPYING;md5=73a5855a8119deb017f5f13cf327095d \ + file://gst/tta/filters.h;beginline=12;endline=29;md5=8a08270656f2f8ad7bb3655b83138e5a \ + file://COPYING.LIB;md5=21682e4e8fea52413fd26c60acb907e5 \ + file://gst/tta/crc32.h;beginline=12;endline=29;md5=27db269c575d1e5317fffca2d33b3b50" + +SRC_URI[md5sum] = "d519b7e8e570c4a22d6b79f2ab89765c" +SRC_URI[sha256sum] = "63e78db11b482d0529a0bde01e2ac23fd32c7cb99a5508b53ee4ca1051871b2c" + +S = "${WORKDIR}/gst-plugins-bad-${PV}" + -- cgit v1.2.3-54-g00ecf