1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

LibVideo/VP9: Begin decoding tiles

This commit is contained in:
FalseHonesty 2021-01-29 19:00:21 -05:00 committed by Andreas Kling
parent f9899fc17f
commit cfd65eafa9
4 changed files with 174 additions and 12 deletions

View file

@ -6,6 +6,8 @@
#pragma once
#include "Symbols.h"
namespace Video::VP9 {
enum FrameType {
@ -79,6 +81,7 @@ enum BlockSubsize : u8 {
Block_32x64 = 10,
Block_64x32 = 11,
Block_64x64 = 12,
Block_Invalid = BLOCK_INVALID
};
}