summaryrefslogtreecommitdiffstats
path: root/meta/recipes-qt/qt4/qt-mobility-1.2.0/0001-gstvideoconnector-fixed-buffers-allocation.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-qt/qt4/qt-mobility-1.2.0/0001-gstvideoconnector-fixed-buffers-allocation.patch')
-rw-r--r--meta/recipes-qt/qt4/qt-mobility-1.2.0/0001-gstvideoconnector-fixed-buffers-allocation.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-qt/qt4/qt-mobility-1.2.0/0001-gstvideoconnector-fixed-buffers-allocation.patch b/meta/recipes-qt/qt4/qt-mobility-1.2.0/0001-gstvideoconnector-fixed-buffers-allocation.patch
new file mode 100644
index 0000000000..2df76fc778
--- /dev/null
+++ b/meta/recipes-qt/qt4/qt-mobility-1.2.0/0001-gstvideoconnector-fixed-buffers-allocation.patch
@@ -0,0 +1,34 @@
1Upstream-Status: Submitted [QTMOBILITY-1611]
2
3From b308508b49afa9a129b4e4589c57cd107d1320b8 Mon Sep 17 00:00:00 2001
4From: Dmytro Poplavskiy <dmytro.poplavskiy@nokia.com>
5Date: Fri, 6 May 2011 10:35:11 +1000
6Subject: [PATCH] gstvideoconnector: fixed buffers allocation
7
8It should not be necessary, but at least theora video decoder doesn't
9iniatilize *buf, while gst_pad_alloc_buffer relies on buf being NULL.
10
11Task-number: QTMOBILITY-1611
12Reviewed-by: Michael Goddard
13---
14 plugins/multimedia/gstreamer/gstvideoconnector.c | 4 ++++
15 1 files changed, 4 insertions(+), 0 deletions(-)
16
17diff --git a/plugins/multimedia/gstreamer/gstvideoconnector.c b/plugins/multimedia/gstreamer/gstvideoconnector.c
18index ddf68e0..9f8ceae 100644
19--- a/plugins/multimedia/gstreamer/gstvideoconnector.c
20+++ b/plugins/multimedia/gstreamer/gstvideoconnector.c
21@@ -186,6 +186,10 @@ gst_video_connector_buffer_alloc (GstPad * pad, guint64 offset, guint size,
22 GstFlowReturn res = GST_FLOW_OK;
23 element = GST_VIDEO_CONNECTOR (GST_PAD_PARENT (pad));
24
25+ if (!buf)
26+ return GST_FLOW_ERROR;
27+ *buf = NULL;
28+
29 GST_OBJECT_LOCK (element);
30 gst_object_ref(element->srcpad);
31 GST_OBJECT_UNLOCK (element);
32--
331.7.4.1
34