1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:57:45 +00:00

LibVideo/VP9: Implement a bit stream to decode VP9 data

The VP9 specification requires a special decoding process to parse a
lot of the data read from a frame, so this BitStream wrapper implements
that behavior. These processes are defined in section 9 of the
VP9 spec.
This commit is contained in:
FalseHonesty 2021-06-05 16:29:29 -04:00 committed by Ali Mohammad Pur
parent 18759ff56d
commit 2e31b9cf7c
3 changed files with 193 additions and 0 deletions

View file

@ -1,6 +1,7 @@
set(SOURCES
MatroskaDocument.h
MatroskaReader.cpp
VP9/BitStream.cpp
VP9/Enums.h
VP9/ProbabilityTables.cpp
VP9/Symbols.h