summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-video-frame-Add-GST_VIDEO_FRAME_MAP_FLAG_NO_REF.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-video-frame-Add-GST_VIDEO_FRAME_MAP_FLAG_NO_REF.patch')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-video-frame-Add-GST_VIDEO_FRAME_MAP_FLAG_NO_REF.patch87
1 files changed, 87 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-video-frame-Add-GST_VIDEO_FRAME_MAP_FLAG_NO_REF.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-video-frame-Add-GST_VIDEO_FRAME_MAP_FLAG_NO_REF.patch
new file mode 100644
index 0000000000..c465b5ceed
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-video-frame-Add-GST_VIDEO_FRAME_MAP_FLAG_NO_REF.patch
@@ -0,0 +1,87 @@
1From 40a293d44d1aeccf5eb8e86f23a0b13666111c5c Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebastian@centricular.com>
3Date: Fri, 12 Sep 2014 14:39:16 +0300
4Subject: [PATCH 2/3] video-frame: Add GST_VIDEO_FRAME_MAP_FLAG_NO_REF
5
6This makes sure that the buffer is not reffed another time when
7storing it in the GstVideoFrame, keeping it writable if it was
8writable.
9
10Upstream-Status: Backport [1.5.1]
11https://bugzilla.gnome.org/show_bug.cgi?id=736118
12---
13 gst-libs/gst/video/video-frame.c | 9 ++++++++-
14 gst-libs/gst/video/video-frame.h | 18 ++++++++++++++++++
15 2 files changed, 26 insertions(+), 1 deletion(-)
16
17diff --git a/gst-libs/gst/video/video-frame.c b/gst-libs/gst/video/video-frame.c
18index 537cf70..01f23c0 100644
19--- a/gst-libs/gst/video/video-frame.c
20+++ b/gst-libs/gst/video/video-frame.c
21@@ -106,6 +106,9 @@ gst_video_frame_map_id (GstVideoFrame * frame, GstVideoInfo * info,
22 }
23 }
24 frame->buffer = gst_buffer_ref (buffer);
25+ if ((flags & GST_VIDEO_FRAME_MAP_FLAG_NO_REF) == 0)
26+ gst_buffer_ref (frame->buffer);
27+
28 frame->meta = meta;
29
30 /* buffer flags enhance the frame flags */
31@@ -189,11 +192,13 @@ gst_video_frame_unmap (GstVideoFrame * frame)
32 GstBuffer *buffer;
33 GstVideoMeta *meta;
34 gint i;
35+ GstMapFlags flags;
36
37 g_return_if_fail (frame != NULL);
38
39 buffer = frame->buffer;
40 meta = frame->meta;
41+ flags = frame->map[0].flags;
42
43 if (meta) {
44 for (i = 0; i < frame->info.finfo->n_planes; i++) {
45@@ -202,7 +207,9 @@ gst_video_frame_unmap (GstVideoFrame * frame)
46 } else {
47 gst_buffer_unmap (buffer, &frame->map[0]);
48 }
49- gst_buffer_unref (buffer);
50+
51+ if ((flags & GST_VIDEO_FRAME_MAP_FLAG_NO_REF) == 0)
52+ gst_buffer_unref (frame->buffer);
53 }
54
55 /**
56diff --git a/gst-libs/gst/video/video-frame.h b/gst-libs/gst/video/video-frame.h
57index 627fab0..f8e6304 100644
58--- a/gst-libs/gst/video/video-frame.h
59+++ b/gst-libs/gst/video/video-frame.h
60@@ -149,6 +149,24 @@ typedef enum {
61 GST_VIDEO_BUFFER_FLAG_LAST = (GST_BUFFER_FLAG_LAST << 8)
62 } GstVideoBufferFlags;
63
64+/**
65+ * GstVideoBufferFlags:
66+ * @GST_VIDEO_FRAME_MAP_FLAG_NO_REF: Don't take another reference of the buffer and store it in
67+ * the GstVideoFrame. This makes sure that the buffer stays
68+ * writable while the frame is mapped, but requires that the
69+ * buffer reference stays valid until the frame is unmapped again.
70+ * @GST_VIDEO_FRAME_MAP_FLAG_LAST: Offset to define more flags
71+ *
72+ * Additional mapping flags for gst_video_frame_map().
73+ *
74+ * Since: 1.6
75+ */
76+typedef enum {
77+ GST_VIDEO_FRAME_MAP_FLAG_NO_REF = (GST_MAP_FLAG_LAST << 0),
78+ GST_VIDEO_FRAME_MAP_FLAG_LAST = (GST_MAP_FLAG_LAST << 8)
79+ /* 8 more flags possible afterwards */
80+} GstVideoFrameMapFlags;
81+
82 G_END_DECLS
83
84 #endif /* __GST_VIDEO_FRAME_H__ */
85--
861.7.9.5
87