mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:17:35 +00:00
LibVideo/VP9: Prefix TransformSize with Transform_ instead of TX_
This commit is contained in:
parent
f6e645a153
commit
1a2d8ac40c
7 changed files with 43 additions and 43 deletions
|
@ -235,9 +235,9 @@ ErrorOr<TransformSize> TreeParser::parse_tx_size(BitStream& bit_stream, Probabil
|
|||
|
||||
// Tree
|
||||
TreeParser::TreeSelection tree { tx_size_8_tree };
|
||||
if (max_tx_size == TX_16x16)
|
||||
if (max_tx_size == Transform_16x16)
|
||||
tree = { tx_size_16_tree };
|
||||
if (max_tx_size == TX_32x32)
|
||||
if (max_tx_size == Transform_32x32)
|
||||
tree = { tx_size_32_tree };
|
||||
|
||||
// Probabilities
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue