avcodec/cbs_av1: infer frame_type when parsing a show_existing_frame frame

Reviewed-by: Mark Thompson <sw@jkqxz.net>
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2020-08-23 16:23:56 -03:00
parent f1e92ee36b
commit 6c20207dce
1 changed files with 1 additions and 0 deletions

View File

@ -1299,6 +1299,7 @@ static int FUNC(uncompressed_header)(CodedBitstreamContext *ctx, RWContext *rw,
else
infer(refresh_frame_flags, 0);
infer(frame_type, frame->frame_type);
infer(frame_width_minus_1, frame->upscaled_width - 1);
infer(frame_height_minus_1, frame->frame_height - 1);
infer(render_width_minus_1, frame->render_width - 1);