1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 20:27:46 +00:00

LibVideo/VP9: Store m_mode_context in BlockContext

This is set by motion vector selection to later be used by inter block
info parsing.
This commit is contained in:
Zaggy1024 2022-11-27 01:14:57 -06:00 committed by Andreas Kling
parent b5cce5a448
commit 3667f9bf2c
3 changed files with 10 additions and 9 deletions

View file

@ -206,6 +206,9 @@ struct BlockContext {
Array<MotionVectorPair, 4> sub_block_motion_vectors;
Array<i32, 1024> residual_tokens;
// Indexed by ReferenceFrame enum.
Array<u8, 4> mode_context;
};
struct BlockMotionVectorCandidateSet {