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:
parent
b5cce5a448
commit
3667f9bf2c
3 changed files with 10 additions and 9 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue