mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-02 04:20:28 +00:00
LibGfx: Fix lossless fourcc in VP8X chunk decoder
This commit is contained in:
parent
d78c70c28c
commit
d5875b5962
Notes:
sideshowbarker
2024-07-17 06:40:21 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/d5875b5962 Pull-request: https://github.com/SerenityOS/serenity/pull/17603 Reviewed-by: https://github.com/linusg
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…
Reference in a new issue