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

LibVideo/VP9: Implement simple FIXMEs that use now supported data

This commit is contained in:
FalseHonesty 2021-06-26 12:14:23 -04:00 committed by Andreas Kling
parent e4f015ce3d
commit 559f5a087d
2 changed files with 31 additions and 18 deletions

View file

@ -201,6 +201,8 @@ private:
InterMode m_near_mv[2];
InterMode m_nearest_mv[2];
Vector<Vector<Vector<IntraMode>>> m_sub_modes; // FIXME: Can we make these fixed sized allocations?
u32 m_ref_frame_width[NUM_REF_FRAMES];
u32 m_ref_frame_height[NUM_REF_FRAMES];
bool m_use_hp { false };