1
Fork 0
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:
FalseHonesty 2021-05-05 22:30:32 -04:00 committed by Andreas Kling
parent cc1a9e3d1c
commit e687f05b42
4 changed files with 61 additions and 3 deletions

View file

@ -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,