This error was trying to catch the case where we had a start code without any
bytes afterward. This will never happen since the start code scanner only returns
a match if there is one byte adter start code (pattern 0x00000100 / mask
0xffffff00).
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1251>
return GST_H265_PARSER_NO_NAL;
}
- if (offset + off1 == size - 1) {
- GST_DEBUG ("Missing data to identify nal unit");
-
- return GST_H265_PARSER_ERROR;
- }
-
nalu->sc_offset = offset + off1;
/* sc might have 2 or 3 0-bytes */