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

LibVideo/VP9: Implement token parsing (6.4.24-6.4.26)

Note that this now requires a couple new syntax types to be parsed
in the TreeParser, so a follow-up commit will implement that behavior.
This commit is contained in:
FalseHonesty 2021-06-27 10:58:16 -04:00 committed by Andreas Kling
parent d79c9c262f
commit aa27ca1b16
5 changed files with 171 additions and 4 deletions

View file

@ -36,6 +36,7 @@ template IntraMode TreeParser::parse_tree(SyntaxElementType);
template TXSize TreeParser::parse_tree(SyntaxElementType);
template InterpolationFilter TreeParser::parse_tree(SyntaxElementType);
template ReferenceMode TreeParser::parse_tree(SyntaxElementType);
template Token TreeParser::parse_tree(SyntaxElementType);
/*
* Select a tree value based on the type of syntax element being parsed, as well as some parser state, as specified in section 9.3.1