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

LibVideo/VP9: Add Decoder and begin parsing uncompressed header data

This patch brings all of the previous work together and starts to
actually parse and decode frame information. Currently it only parses
the uncompressed header data (section 6.2 of the spec).
This commit is contained in:
FalseHonesty 2021-06-05 16:38:55 -04:00 committed by Ali Mohammad Pur
parent 2e31b9cf7c
commit baff94e44d
4 changed files with 558 additions and 0 deletions

View file

@ -2,7 +2,9 @@ set(SOURCES
MatroskaDocument.h
MatroskaReader.cpp
VP9/BitStream.cpp
VP9/Decoder.cpp
VP9/Enums.h
VP9/LookupTables.h
VP9/ProbabilityTables.cpp
VP9/Symbols.h
VP9/SyntaxElementCounter.cpp