mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 16:57:36 +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
|
@ -54,10 +54,10 @@ enum TransformMode : u8 {
|
|||
};
|
||||
|
||||
enum TransformSize : u8 {
|
||||
TX_4x4 = 0,
|
||||
TX_8x8 = 1,
|
||||
TX_16x16 = 2,
|
||||
TX_32x32 = 3,
|
||||
Transform_4x4 = 0,
|
||||
Transform_8x8 = 1,
|
||||
Transform_16x16 = 2,
|
||||
Transform_32x32 = 3,
|
||||
};
|
||||
|
||||
enum class TransformType : u8 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue