summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2017-01-31 22:03:03 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-02-05 09:22:17 +0000
commit51481fe9bbfb07271317824eac3044be6cab297c (patch)
tree8c2052751aa07d7361ef54967c0406ce81663521 /meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good
parent497558512a25c920212e9198fb32ab501733dca9 (diff)
downloadpoky-51481fe9bbfb07271317824eac3044be6cab297c.tar.gz
gstreamer: update to 1.10.3
New bugfix release: * updated version/checksums * removed 1 patch in -good which was merged upstream (From OE-Core rev: f61cdef0a8b2771225c6bc86881a16f8ef747983) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/qtdemux-free-seqh-after-calling-qtdemux_parse_svq3_s.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/qtdemux-free-seqh-after-calling-qtdemux_parse_svq3_s.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/qtdemux-free-seqh-after-calling-qtdemux_parse_svq3_s.patch
deleted file mode 100644
index 3428790003..0000000000
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/qtdemux-free-seqh-after-calling-qtdemux_parse_svq3_s.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From 29433495d697e4dcb3bc50ff0e0d866acb949890 Mon Sep 17 00:00:00 2001
2From: Andre McCurdy <armccurdy@gmail.com>
3Date: Wed, 11 Jan 2017 17:53:32 -0800
4Subject: [PATCH] qtdemux: free seqh after calling
5 qtdemux_parse_svq3_stsd_data()
6
7The seqh buffer allocated in qtdemux_parse_svq3_stsd_data() needs to
8be freed by the caller after use.
9
10https://bugzilla.gnome.org/show_bug.cgi?id=777157
11
12Upstream-Status: Backport
13
14Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
15---
16 gst/isomp4/qtdemux.c | 1 +
17 1 file changed, 1 insertion(+)
18
19diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c
20index e105809..7a431e0 100644
21--- a/gst/isomp4/qtdemux.c
22+++ b/gst/isomp4/qtdemux.c
23@@ -10375,6 +10375,7 @@ qtdemux_parse_trak (GstQTDemux * qtdemux, GNode * trak)
24 * than its own fourcc */
25 gst_caps_set_simple (stream->caps, "seqh", GST_TYPE_BUFFER, seqh,
26 NULL);
27+ gst_buffer_unref (seqh);
28 }
29
30 GST_DEBUG_OBJECT (qtdemux, "found codec_data in stsd");
31--
321.9.1
33