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
commit 17107303f0
Notes: sideshowbarker 2024-07-17 06:07:46 +09:00

View file

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