From 48a1f2792316d01c4ea4c6baa27188ffae73c543 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Fri, 24 Jul 2015 02:46:21 +1000 Subject: [PATCH] h264parse: Don't discard first AU delimiter Don't throw away AU delimiter(s) that precede the SPS/PPS. Should fix MPEG-TS playback on iOS/Quicktime when muxing streams that already have AU delimiters. See https://bugzilla.gnome.org/show_bug.cgi?id=736213 for getting h264parse to insert AU delimiters when they don't already exist. --- gst/videoparsers/gsth264parse.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gst/videoparsers/gsth264parse.c b/gst/videoparsers/gsth264parse.c index 06e4831260..aabe14c4bd 100644 --- a/gst/videoparsers/gsth264parse.c +++ b/gst/videoparsers/gsth264parse.c @@ -856,6 +856,12 @@ gst_h264_parse_process_nal (GstH264Parse * h264parse, GstH264NalUnit * nalu) h264parse->idr_pos); } break; + case GST_H264_NAL_AU_DELIMITER: + /* Just accumulate AU Delimiter, whether it's before SPS or not */ + pres = gst_h264_parser_parse_nal (nalparser, nalu); + if (pres != GST_H264_PARSER_OK) + return FALSE; + break; default: /* drop anything before the initial SPS */ if (!GST_H264_PARSE_STATE_VALID (h264parse, GST_H264_PARSE_STATE_GOT_SPS))