summaryrefslogtreecommitdiff
path: root/recipes-multimedia/gstreamer/gstreamer1.0/0003-baseparse-unset-FLAG_DISCONT-when-push-to-adapter.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-multimedia/gstreamer/gstreamer1.0/0003-baseparse-unset-FLAG_DISCONT-when-push-to-adapter.patch')
-rw-r--r--recipes-multimedia/gstreamer/gstreamer1.0/0003-baseparse-unset-FLAG_DISCONT-when-push-to-adapter.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0/0003-baseparse-unset-FLAG_DISCONT-when-push-to-adapter.patch b/recipes-multimedia/gstreamer/gstreamer1.0/0003-baseparse-unset-FLAG_DISCONT-when-push-to-adapter.patch
deleted file mode 100644
index 9758d9c..0000000
--- a/recipes-multimedia/gstreamer/gstreamer1.0/0003-baseparse-unset-FLAG_DISCONT-when-push-to-adapter.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 95d80584413c60cfe302cb2b55f59ffdca2a67b9 Mon Sep 17 00:00:00 2001
-From: Lyon Wang <lyon.wang@freescale.com>
-Date: Wed, 4 Nov 2015 18:16:52 +0800
-Subject: [PATCH 3/7] [baseparse] unset FLAG_DISCONT when push to adapter
-
-Since DISCONT flag will be handled by priv->discont flag.
-There is no need to copy DISCONT flag to adapter.
-Otherwise, the DISCONT flag will alwasys been set on each frame,
-for the first chain in buffer.
-
-
-Upstream-Status: Pending [https://bugzilla.gnome.org/show_bug.cgi?id=757575]
-
-Signed-off-by: Lyon Wang <lyon.wang@freescale.com>
----
- libs/gst/base/gstbaseparse.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/libs/gst/base/gstbaseparse.c b/libs/gst/base/gstbaseparse.c
-index 2f45d23..3c52887 100644
---- a/libs/gst/base/gstbaseparse.c
-+++ b/libs/gst/base/gstbaseparse.c
-@@ -3157,6 +3157,7 @@ gst_base_parse_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
- parse->priv->discont = TRUE;
- }
- }
-+ GST_BUFFER_FLAG_UNSET(buffer, GST_BUFFER_FLAG_DISCONT);
- gst_adapter_push (parse->priv->adapter, buffer);
- }
-
---
-1.9.1
-