[0.11] gst-plugins-bad: h264parse: report after merge
Wim Taymans
wtay at kemper.freedesktop.org
Fri Feb 10 07:53:04 PST 2012
Module: gst-plugins-bad
Branch: 0.11
Commit: 6c2f5814efac174fd678e33b2ad71f64b4aecf91
URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-bad/commit/?id=6c2f5814efac174fd678e33b2ad71f64b4aecf91
Author: Wim Taymans <wim.taymans at collabora.co.uk>
Date: Fri Feb 10 16:52:46 2012 +0100
h264parse: report after merge
---
gst/videoparsers/gsth264parse.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/gst/videoparsers/gsth264parse.c b/gst/videoparsers/gsth264parse.c
index 2ba6af0..d7890f6 100644
--- a/gst/videoparsers/gsth264parse.c
+++ b/gst/videoparsers/gsth264parse.c
@@ -355,7 +355,7 @@ gst_h264_parse_negotiate (GstH264Parse * h264parse, GstCaps * in_caps)
if (caps) {
/* fixate to avoid ambiguity with lists when parsing */
- gst_pad_fixate_caps (GST_BASE_PARSE_SRC_PAD (h264parse), caps);
+ gst_caps_fixate (caps);
gst_h264_parse_format_from_caps (caps, &format, &align);
gst_caps_unref (caps);
}
@@ -1914,13 +1914,13 @@ gst_h264_parse_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
GST_BUFFER_TIMESTAMP (sub) = GST_BUFFER_TIMESTAMP (buffer);
/* transfer flags (e.g. DISCONT) for first fragment */
if (nalu.offset <= nl)
- gst_buffer_copy_metadata (sub, buffer, GST_BUFFER_COPY_FLAGS);
+ gst_buffer_copy_into (sub, buffer, GST_BUFFER_COPY_FLAGS, 0, -1);
/* in reverse playback, baseparse gathers buffers, so we cannot
* guarantee a buffer to contain a single whole NALU */
h264parse->packetized_chunked =
(GST_BASE_PARSE (h264parse)->segment.rate > 0.0);
h264parse->packetized_last =
- (nalu.offset + nalu.size + nl >= GST_BUFFER_SIZE (buffer));
+ (nalu.offset + nalu.size + nl >= gst_buffer_get_size (buffer));
GST_LOG_OBJECT (h264parse, "pushing NAL of size %d, last = %d",
nalu.size, h264parse->packetized_last);
ret = h264parse->parse_chain (pad, parent, sub);
More information about the gstreamer-commits
mailing list