From ef0e051e7d20bcc55a523115510915f5ae7a4b65 Mon Sep 17 00:00:00 2001 From: Ilya Smelykh Date: Fri, 7 Jun 2013 12:10:08 +0200 Subject: [PATCH] h264parse: Wait until SPS/PPS before outputting any data https://bugzilla.gnome.org/show_bug.cgi?id=646327 --- gst/videoparsers/gsth264parse.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/gst/videoparsers/gsth264parse.c b/gst/videoparsers/gsth264parse.c index 6da80f2a38..2d4e711a2a 100644 --- a/gst/videoparsers/gsth264parse.c +++ b/gst/videoparsers/gsth264parse.c @@ -882,7 +882,15 @@ gst_h264_parse_handle_frame (GstBaseParse * parse, } } - gst_h264_parse_process_nal (h264parse, &nalu); + if (nalu.type == GST_H264_NAL_SPS || + nalu.type == GST_H264_NAL_PPS || + (h264parse->have_sps && h264parse->have_pps)) { + gst_h264_parse_process_nal (h264parse, &nalu); + } else { + GST_WARNING_OBJECT (h264parse, "no SPS/PPS yet, nal Type: %d, Size: %u will be dropped", nalu.type, nalu.size); + *skipsize = nalu.size; + goto skip; + } if (nonext) break;