mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:17:35 +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:
parent
03738aa006
commit
17107303f0
1 changed files with 4 additions and 4 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue