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

LibVideo: Fix incorrect VP9 InterMode enum values

These values were referencing the wrong column of a table in the spec,
the values should start from 10.
This commit is contained in:
Zaggy1024 2022-10-08 22:57:00 -05:00 committed by Andrew Kaster
parent 03738aa006
commit 17107303f0

View file

@ -108,10 +108,10 @@ enum IntraMode : u8 {
}; };
enum InterMode : u8 { enum InterMode : u8 {
NearestMv = 0, NearestMv = 10,
NearMv = 1, NearMv = 11,
ZeroMv = 2, ZeroMv = 12,
NewMv = 3, NewMv = 13,
}; };
enum MvJoint : u8 { enum MvJoint : u8 {