mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:28:12 +00:00
LibGfx: Fix lossless fourcc in VP8X chunk decoder
This commit is contained in:
parent
d78c70c28c
commit
d5875b5962
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,7 @@ static ErrorOr<void> decode_webp_extended(WebPLoadingContext& context, Chunk con
|
|||
// instead of calling the _simple functions from the _extended function.
|
||||
if (chunk.type == FourCC("VP8 "))
|
||||
TRY(decode_webp_simple_lossy(context, chunk));
|
||||
if (chunk.type == FourCC("VP8X"))
|
||||
if (chunk.type == FourCC("VP8L"))
|
||||
TRY(decode_webp_simple_lossless(context, chunk));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue