mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 10:27:36 +00:00
LibVideo/VP9: Implement intra_frame_mode_info procedure (6.4.6)
This commit is contained in:
parent
cc1a9e3d1c
commit
e687f05b42
4 changed files with 61 additions and 3 deletions
|
@ -184,4 +184,20 @@ static constexpr u8 mi_height_log2_lookup[BLOCK_SIZES] = { 0, 0, 0, 0, 1, 0, 1,
|
|||
static constexpr u8 num_8x8_blocks_high_lookup[BLOCK_SIZES] = { 1, 1, 1, 1, 2, 1, 2, 4, 2, 4, 8, 4, 8 };
|
||||
static constexpr u8 size_group_lookup[BLOCK_SIZES] = { 0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3 };
|
||||
|
||||
static constexpr TXSize max_txsize_lookup[BLOCK_SIZES] = {
|
||||
TX_4x4,
|
||||
TX_4x4,
|
||||
TX_4x4,
|
||||
TX_8x8,
|
||||
TX_8x8,
|
||||
TX_8x8,
|
||||
TX_16x16,
|
||||
TX_16x16,
|
||||
TX_16x16,
|
||||
TX_32x32,
|
||||
TX_32x32,
|
||||
TX_32x32,
|
||||
TX_32x32,
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue