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

LibVideo: Rename VP9's ReferenceFrame enum to ReferenceFrameType

This commit is contained in:
Zaggy1024 2022-10-31 21:37:36 -05:00 committed by Andrew Kaster
parent 3610b8dd93
commit 993385f18d
3 changed files with 20 additions and 20 deletions

View file

@ -35,7 +35,7 @@ enum InterpolationFilter : u8 {
Switchable = 4
};
enum ReferenceFrame : u8 {
enum ReferenceFrameType : u8 {
// 0 is both INTRA_FRAME and NONE because the value's meaning changes depending on which index they're in on the ref_frame array
None = 0,
IntraFrame = 0,