mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
h264parse: Remove un-needed check on SPS state
Fixes #3254 - Having SEI before SPS is not an issue anymore with AU boundary detection based on backlog. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6004>
This commit is contained in:
parent
f12a15a374
commit
73dedf9a51
1 changed files with 0 additions and 4 deletions
|
@ -1129,10 +1129,6 @@ gst_h264_parse_process_nal (GstH264Parse * h264parse, GstH264NalUnit * nalu)
|
|||
h264parse->header = TRUE;
|
||||
break;
|
||||
case GST_H264_NAL_SEI:
|
||||
/* expected state: got-sps */
|
||||
if (!GST_H264_PARSE_STATE_VALID (h264parse, GST_H264_PARSE_STATE_GOT_SPS))
|
||||
return FALSE;
|
||||
|
||||
h264parse->header = TRUE;
|
||||
gst_h264_parse_process_sei (h264parse, nalu);
|
||||
/* mark SEI pos */
|
||||
|
|
Loading…
Reference in a new issue