mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-14 21:42:19 +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
Notes:
sideshowbarker
2024-07-17 06:07:46 +09:00
Author: https://github.com/Zaggy1024
Commit: 17107303f0
Pull-request: https://github.com/SerenityOS/serenity/pull/15363
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/FireFox317
Reviewed-by: https://github.com/MacDue
Reviewed-by: https://github.com/davidot
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