mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 17:17:45 +00:00
LibVideo/VP9: Implement sections 6.1.2 and 8.4.1-8.4.4
These section implement the behavior to refresh the probability tables after parsing a frame.
This commit is contained in:
parent
cf6b3d0ce9
commit
d79c9c262f
8 changed files with 188 additions and 9 deletions
|
@ -216,4 +216,10 @@ static constexpr BlockSubsize ss_size_lookup[BLOCK_SIZES][2][2] = {
|
|||
{ { Block_64x64, Block_64x32 }, { Block_32x64, Block_32x32 } },
|
||||
};
|
||||
|
||||
static constexpr int small_token_tree[6] = {
|
||||
0, 0, // Unused
|
||||
-ZeroToken, 4,
|
||||
-OneToken, -TwoToken
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue