mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
patches/videoparsers: h264parser: more API fences and refresh
Add more API fences according with its version and refresh the patch. Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com> https://bugzilla.gnome.org/show_bug.cgi?id=754845
This commit is contained in:
parent
0ec0dab21c
commit
ad463c8927
1 changed files with 27 additions and 12 deletions
|
@ -1,28 +1,44 @@
|
||||||
From cb4349b2f36194fbdd557eb11175d83fac144158 Mon Sep 17 00:00:00 2001
|
From 48233a9eeb20d19fbc3f5550d8fecb4271be1822 Mon Sep 17 00:00:00 2001
|
||||||
From: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
From: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
||||||
Date: Wed, 26 Aug 2015 06:50:41 +0300
|
Date: Wed, 26 Aug 2015 06:50:41 +0300
|
||||||
Subject: [PATCH 2/2] h264parse: fix build with older GStreamer 1.x stacks
|
Subject: [PATCH 2/6] h264parse: fix build with older GStreamer 1.x stacks
|
||||||
|
|
||||||
---
|
---
|
||||||
gst/vaapi/gsth264parse.c | 2 ++
|
gst/vaapi/gsth264parse.c | 9 +++++++++
|
||||||
gst/vaapi/gsth264parse.h | 1 +
|
gst/vaapi/gsth264parse.h | 1 +
|
||||||
2 files changed, 3 insertions(+)
|
2 files changed, 10 insertions(+)
|
||||||
|
|
||||||
diff --git a/gst/vaapi/gsth264parse.c b/gst/vaapi/gsth264parse.c
|
diff --git a/gst/vaapi/gsth264parse.c b/gst/vaapi/gsth264parse.c
|
||||||
index 8f3b225..a3d2952 100644
|
index 96901e0..f472a5e 100644
|
||||||
--- a/gst/vaapi/gsth264parse.c
|
--- a/gst/vaapi/gsth264parse.c
|
||||||
+++ b/gst/vaapi/gsth264parse.c
|
+++ b/gst/vaapi/gsth264parse.c
|
||||||
@@ -165,8 +165,10 @@ gst_h264_parse_init (GstH264Parse * h264parse)
|
@@ -165,8 +165,12 @@ gst_h264_parse_init (GstH264Parse * h264parse)
|
||||||
{
|
{
|
||||||
h264parse->frame_out = gst_adapter_new ();
|
h264parse->frame_out = gst_adapter_new ();
|
||||||
gst_base_parse_set_pts_interpolation (GST_BASE_PARSE (h264parse), FALSE);
|
gst_base_parse_set_pts_interpolation (GST_BASE_PARSE (h264parse), FALSE);
|
||||||
+#if GST_CHECK_VERSION(1,3,0)
|
+#if GST_CHECK_VERSION(1,3,0)
|
||||||
GST_PAD_SET_ACCEPT_INTERSECT (GST_BASE_PARSE_SINK_PAD (h264parse));
|
GST_PAD_SET_ACCEPT_INTERSECT (GST_BASE_PARSE_SINK_PAD (h264parse));
|
||||||
|
+#endif
|
||||||
|
+#if GST_CHECK_VERSION(1,5,0)
|
||||||
GST_PAD_SET_ACCEPT_TEMPLATE (GST_BASE_PARSE_SINK_PAD (h264parse));
|
GST_PAD_SET_ACCEPT_TEMPLATE (GST_BASE_PARSE_SINK_PAD (h264parse));
|
||||||
+#endif
|
+#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -2216,8 +2220,13 @@ gst_h264_parse_pre_push_frame (GstBaseParse * parse, GstBaseParseFrame * frame)
|
||||||
|
GST_TAG_VIDEO_CODEC, caps);
|
||||||
|
gst_caps_unref (caps);
|
||||||
|
|
||||||
|
+#if GST_CHECK_VERSION(1,5,0)
|
||||||
|
gst_base_parse_merge_tags (parse, taglist, GST_TAG_MERGE_REPLACE);
|
||||||
|
gst_tag_list_unref (taglist);
|
||||||
|
+#else
|
||||||
|
+ gst_pad_push_event (GST_BASE_PARSE_SRC_PAD (h264parse),
|
||||||
|
+ gst_event_new_tag (taglist));
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
/* also signals the end of first-frame processing */
|
||||||
|
h264parse->sent_codec_tag = TRUE;
|
||||||
diff --git a/gst/vaapi/gsth264parse.h b/gst/vaapi/gsth264parse.h
|
diff --git a/gst/vaapi/gsth264parse.h b/gst/vaapi/gsth264parse.h
|
||||||
index 58d818c..617e616 100644
|
index 58d818c..617e616 100644
|
||||||
--- a/gst/vaapi/gsth264parse.h
|
--- a/gst/vaapi/gsth264parse.h
|
||||||
|
@ -36,5 +52,4 @@ index 58d818c..617e616 100644
|
||||||
#include <gst/video/video.h>
|
#include <gst/video/video.h>
|
||||||
|
|
||||||
--
|
--
|
||||||
2.1.4
|
2.5.1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue