1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 13:47:46 +00:00

LibVideo/VP9: Convert TransformMode to an enum class

TXModeSelect was also renamed to plain Select, since the qualified name
will be TransformMode::Select.
This commit is contained in:
Zaggy1024 2022-11-26 10:42:26 -06:00 committed by Andreas Kling
parent c33d6fb028
commit db9f1a18f8
3 changed files with 8 additions and 8 deletions

View file

@ -45,12 +45,12 @@ enum ReferenceFrameType : u8 {
AltRefFrame = 3,
};
enum TransformMode : u8 {
enum class TransformMode : u8 {
Only_4x4 = 0,
Allow_8x8 = 1,
Allow_16x16 = 2,
Allow_32x32 = 3,
TXModeSelect = 4,
Select = 4,
};
enum TransformSize : u8 {