You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not a problem when testing with fluster because we check for this when using H264FrameIterator, but clients are free to submit data as they see fit.
The text was updated successfully, but these errors were encountered:
It would be great if we could assert! or debug_assert! these two conditions:
–If separate_colour_plane_flag is equal to 0, the value of first_mb_in_slice shall not be less than the value of
first_mb_in_slice for any other slice of the current picture that precedes the current slice in decoding order.
–Otherwise (separate_colour_plane_flag is equal to 1), the value of first_mb_in_slice shall not be less than the value
of first_mb_in_slice for any other slice of the current picture that precedes the current slice in decoding order and has
the same value of colour_plane_id.
From the specification:
If
first_mb_in_slice == 0
this means that we have identified that the slice belongs to a new picture.This should be one of the conditions checked here
This is not a problem when testing with fluster because we check for this when using H264FrameIterator, but clients are free to submit data as they see fit.
The text was updated successfully, but these errors were encountered: