mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 08:07:44 +00:00
LibVideo/VP9: Implement intra_frame_mode_info procedure (6.4.6)
This commit is contained in:
parent
cc1a9e3d1c
commit
e687f05b42
4 changed files with 61 additions and 3 deletions
|
@ -41,6 +41,8 @@ enum InterpolationFilter {
|
|||
};
|
||||
|
||||
enum ReferenceFrame {
|
||||
// 0 is both INTRA_FRAME and NONE because the value's meaning changes depending on which index they're in on the ref_frame array
|
||||
None = 0,
|
||||
IntraFrame = 0,
|
||||
LastFrame = 1,
|
||||
GoldenFrame = 2,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue