Skip to content

av1parse: Do not return error when expectedFrameId mismatch

According to the SPEC: The frame id numbers (represented in display_frame_id, current_frame_id, and RefFrameId[ i ]) are not needed by the decoding process, but allow decoders to spot when frames have been missed and take an appropriate action.

So we should just print out warning and should not return error in parser when mismatching. The decoder itself is already robust to handle the reference missing.

Merge request reports