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

LibVideo/VP9: Implement intra_frame_mode_info procedure (6.4.6)

This commit is contained in:
FalseHonesty 2021-05-05 22:30:32 -04:00 committed by Andreas Kling
parent cc1a9e3d1c
commit e687f05b42
4 changed files with 61 additions and 3 deletions

View file

@ -167,6 +167,15 @@ private:
u8 m_block_subsize { 0 };
u32 m_row { 0 };
u32 m_col { 0 };
TXSize m_tx_size { TX_4x4 };
ReferenceFrame m_ref_frame[2];
bool m_is_inter { false };
IntraMode m_default_intra_mode { DcPred };
u8 m_y_mode { 0 };
u8 m_sub_modes[4]; // FIXME: What size is this supposed to be?
u8 m_num_4x4_w { 0 };
u8 m_num_4x4_h { 0 };
u8 m_uv_mode { 0 }; // FIXME: Is u8 the right size?
bool m_use_hp { false };