mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-17 22:06:41 +00:00
h265parse: Don't discard first AU delimiter
Apply the commit 48a1f27
https://bugzilla.gnome.org/show_bug.cgi?id=754124
This commit is contained in:
parent
60d8b7184f
commit
8b57392b92
1 changed files with 6 additions and 0 deletions
|
@ -715,6 +715,12 @@ gst_h265_parse_process_nal (GstH265Parse * h265parse, GstH265NalUnit * nalu)
|
||||||
h265parse->idr_pos);
|
h265parse->idr_pos);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case GST_H265_NAL_AUD:
|
||||||
|
/* Just accumulate AU Delimiter, whether it's before SPS or not */
|
||||||
|
pres = gst_h265_parser_parse_nal (nalparser, nalu);
|
||||||
|
if (pres != GST_H265_PARSER_OK)
|
||||||
|
return FALSE;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
/* drop anything before the initial SPS */
|
/* drop anything before the initial SPS */
|
||||||
if (!GST_H265_PARSE_STATE_VALID (h265parse, GST_H265_PARSE_STATE_GOT_SPS))
|
if (!GST_H265_PARSE_STATE_VALID (h265parse, GST_H265_PARSE_STATE_GOT_SPS))
|
||||||
|
|
Loading…
Reference in a new issue