diff options
author | Zaggy1024 <zaggy1024@gmail.com> | 2022-10-08 22:57:00 -0500 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-10-09 20:32:40 -0600 |
commit | 17107303f00a233da8a8f8dd37317e49bc272c93 (patch) | |
tree | de76886a4f8f6de9106df9771dca48b55669fba6 /Userland/Libraries/LibVideo | |
parent | 03738aa0069069bbb75f6267c5f6fd2161586832 (diff) | |
download | serenity-17107303f00a233da8a8f8dd37317e49bc272c93.zip |
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.
Diffstat (limited to 'Userland/Libraries/LibVideo')
-rw-r--r-- | Userland/Libraries/LibVideo/VP9/Enums.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Libraries/LibVideo/VP9/Enums.h b/Userland/Libraries/LibVideo/VP9/Enums.h index a478e7beb1..ed42f1eb2e 100644 --- a/Userland/Libraries/LibVideo/VP9/Enums.h +++ b/Userland/Libraries/LibVideo/VP9/Enums.h @@ -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 { |