diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2016-02-19 18:53:14 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-22 20:42:47 +0000 |
commit | 821498f1d5ed7fd8490dc1c2f4f0d5ec69092002 (patch) | |
tree | 20e2cb5cd3bfdb63f3f76f55a0526f6bf1f7ac36 /meta/recipes-multimedia | |
parent | 04e77c17559f1e21214abb704b1d03ef173aded8 (diff) | |
download | poky-821498f1d5ed7fd8490dc1c2f4f0d5ec69092002.tar.gz |
gstreamer1.0-plugins-good_git: update 1.7.1 -> 1.7.2
(From OE-Core rev: 2f396eea3c0d054d9b259260e98b688eb9d6d95d)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia')
2 files changed, 4 insertions, 45 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch deleted file mode 100644 index 59addaed43..0000000000 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | From 63a838d9ae2be480be8d28d6f51762d288b2a54a Mon Sep 17 00:00:00 2001 | ||
2 | From: Andre McCurdy <armccurdy@gmail.com> | ||
3 | Date: Tue, 26 Jan 2016 14:47:36 -0800 | ||
4 | Subject: [PATCH] fix maybe-uninitialized warnings when compiling with -Os | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | |||
8 | Signed-off-by: Andre McCurdy <armccurdy@gmail.com> | ||
9 | --- | ||
10 | gst/isomp4/qtdemux.c | 1 + | ||
11 | gst/rtp/gstrtph261pay.c | 2 +- | ||
12 | 2 files changed, 2 insertions(+), 1 deletion(-) | ||
13 | |||
14 | diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c | ||
15 | index 77bb73e..1fc60ac 100644 | ||
16 | --- a/gst/isomp4/qtdemux.c | ||
17 | +++ b/gst/isomp4/qtdemux.c | ||
18 | @@ -3269,6 +3269,7 @@ qtdemux_parse_cenc_aux_info (GstQTDemux * qtdemux, QtDemuxStream * stream, | ||
19 | gst_structure_set (properties, "iv", GST_TYPE_BUFFER, buf, NULL); | ||
20 | size = info_sizes[i]; | ||
21 | if (size > iv_size) { | ||
22 | + n_subsamples = 0; | ||
23 | if (!gst_byte_reader_get_uint16_be (br, &n_subsamples) | ||
24 | || !(n_subsamples > 0)) { | ||
25 | gst_structure_free (properties); | ||
26 | diff --git a/gst/rtp/gstrtph261pay.c b/gst/rtp/gstrtph261pay.c | ||
27 | index 7cdd323..ebcf80e 100644 | ||
28 | --- a/gst/rtp/gstrtph261pay.c | ||
29 | +++ b/gst/rtp/gstrtph261pay.c | ||
30 | @@ -867,7 +867,7 @@ gst_rtp_h261_packetize_and_push (GstRtpH261Pay * pay, GstBuffer * buffer, | ||
31 | gst_rtp_buffer_calc_payload_len (GST_RTP_BASE_PAYLOAD_MTU (pay) - | ||
32 | GST_RTP_H261_PAYLOAD_HEADER_LEN, 0, 0); | ||
33 | guint startpos; | ||
34 | - gint num_gobs; | ||
35 | + gint num_gobs = 0; | ||
36 | Gob gobs[MAX_NUM_GOB]; | ||
37 | Gob *gob; | ||
38 | Macroblock last_mb_in_previous_packet = { 0 }; | ||
39 | -- | ||
40 | 1.9.1 | ||
41 | |||
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb index e3a2019b41..9cadc9afcf 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb | |||
@@ -9,16 +9,16 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \ | |||
9 | SRC_URI = " \ | 9 | SRC_URI = " \ |
10 | git://anongit.freedesktop.org/gstreamer/gst-plugins-good;name=base \ | 10 | git://anongit.freedesktop.org/gstreamer/gst-plugins-good;name=base \ |
11 | git://anongit.freedesktop.org/gstreamer/common;destsuffix=git/common;name=common \ | 11 | git://anongit.freedesktop.org/gstreamer/common;destsuffix=git/common;name=common \ |
12 | file://fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch \ | ||
13 | file://avoid-including-sys-poll.h-directly.patch \ | 12 | file://avoid-including-sys-poll.h-directly.patch \ |
14 | file://ensure-valid-sentinel-for-gst_structure_get.patch \ | 13 | file://ensure-valid-sentinel-for-gst_structure_get.patch \ |
15 | " | 14 | " |
16 | 15 | ||
17 | PV = "1.7.1+git${SRCPV}" | 16 | PV = "1.7.2+git${SRCPV}" |
17 | |||
18 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))" | 18 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))" |
19 | 19 | ||
20 | SRCREV_base = "e016a70a7c97fc61c6cb5cd3821d38bc5ae5c9a4" | 20 | SRCREV_base = "1b6fdce67c15d59957e395b1957aa625322092d4" |
21 | SRCREV_common = "86e46630ed8af8d94796859db550a9c3d89c9f65" | 21 | SRCREV_common = "b64f03f6090245624608beb5d2fff335e23a01c0" |
22 | SRCREV_FORMAT = "base" | 22 | SRCREV_FORMAT = "base" |
23 | 23 | ||
24 | S = "${WORKDIR}/git" | 24 | S = "${WORKDIR}/git" |