mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:07:36 +00:00
LibVideo/VP9: Begin decoding tiles
This commit is contained in:
parent
f9899fc17f
commit
cfd65eafa9
4 changed files with 174 additions and 12 deletions
|
@ -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
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue