1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:47:34 +00:00

LibVideo/VP9: Use a class to store 2D context information

This commit is contained in:
Zaggy1024 2022-11-20 13:23:49 -06:00 committed by Andreas Kling
parent 44413c31a9
commit 0638c5d2b8
4 changed files with 78 additions and 17 deletions

View file

@ -267,7 +267,7 @@ private:
// arrays instead.
// I think should also apply to other fields that are only accessed relative to the current block. Worth looking
// into how much of this context needs to be stored for the whole frame vs a row or column from the current tile.
Vector<FrameBlockContext> m_frame_block_contexts;
Vector2D<FrameBlockContext> m_frame_block_contexts;
MotionVectorPair m_candidate_mv;
ReferenceFramePair m_candidate_frame;