h264parse: use correct h264_parse prefix in function name

This commit is contained in:
Mark Nauwelaerts 2010-01-14 12:06:03 +01:00
parent 39ab05e024
commit df4c4cc703

View file

@ -1438,7 +1438,7 @@ wrong_version:
* takes ownership of nal and returns buffer * takes ownership of nal and returns buffer
*/ */
static GstBuffer * static GstBuffer *
gst_h264parse_write_nal_prefix (GstH264Parse * h264parse, GstBuffer * nal) gst_h264_parse_write_nal_prefix (GstH264Parse * h264parse, GstBuffer * nal)
{ {
guint nal_length = h264parse->nal_length_size; guint nal_length = h264parse->nal_length_size;
gint i; gint i;
@ -1617,7 +1617,7 @@ gst_h264_parse_push_nal (GstH264Parse * h264parse, GstBuffer * nal,
if (h264parse->merge) { if (h264parse->merge) {
/* proper prefix */ /* proper prefix */
nal = gst_h264parse_write_nal_prefix (h264parse, nal); nal = gst_h264_parse_write_nal_prefix (h264parse, nal);
/* start of a picture is a good time to insert codec SPS and PPS */ /* start of a picture is a good time to insert codec SPS and PPS */
if (G_UNLIKELY (h264parse->codec_nals && h264parse->picture_start)) { if (G_UNLIKELY (h264parse->codec_nals && h264parse->picture_start)) {
@ -1648,7 +1648,7 @@ gst_h264_parse_push_nal (GstH264Parse * h264parse, GstBuffer * nal,
start = TRUE; start = TRUE;
} }
} else { } else {
outbuf = gst_h264parse_write_nal_prefix (h264parse, nal); outbuf = gst_h264_parse_write_nal_prefix (h264parse, nal);
} }
if (_start) if (_start)