Skip to content

Commit

Permalink
Merge "vp9.read_inter_block_mode_info: return on corruption" into main
Browse files Browse the repository at this point in the history
  • Loading branch information
jzern authored and Gerrit Code Review committed Aug 22, 2022
2 parents 7ab8fa2 + 595bf70 commit f88dae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vp9/decoder/vp9_decodemv.c
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ static void read_inter_block_mode_info(VP9Decoder *const pbi,
if (!assign_mv(cm, xd, b_mode, mi->bmi[j].as_mv, best_ref_mvs,
best_sub8x8, is_compound, allow_hp, r)) {
xd->corrupted |= 1;
break;
return;
}

if (num_4x4_h == 2) mi->bmi[j + 2] = mi->bmi[j];
Expand Down

0 comments on commit f88dae6

Please sign in to comment.