From df4c4cc703cd4113113adaebe07454650befab1e Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Thu, 14 Jan 2010 12:06:03 +0100 Subject: [PATCH] h264parse: use correct h264_parse prefix in function name --- gst/h264parse/gsth264parse.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/h264parse/gsth264parse.c b/gst/h264parse/gsth264parse.c index 404fb63b36..d8f1e55fdb 100644 --- a/gst/h264parse/gsth264parse.c +++ b/gst/h264parse/gsth264parse.c @@ -1438,7 +1438,7 @@ wrong_version: * takes ownership of nal and returns buffer */ 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; gint i; @@ -1617,7 +1617,7 @@ gst_h264_parse_push_nal (GstH264Parse * h264parse, GstBuffer * nal, if (h264parse->merge) { /* 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 */ if (G_UNLIKELY (h264parse->codec_nals && h264parse->picture_start)) { @@ -1648,7 +1648,7 @@ gst_h264_parse_push_nal (GstH264Parse * h264parse, GstBuffer * nal, start = TRUE; } } else { - outbuf = gst_h264parse_write_nal_prefix (h264parse, nal); + outbuf = gst_h264_parse_write_nal_prefix (h264parse, nal); } if (_start)