mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-14 02:10:36 +00:00
LibGfx/JPEG2000: Make unimplemented markers in tile-part header fatal
This commit is contained in:
parent
dbe179f0d5
commit
f91d8472ee
Notes:
sideshowbarker
2024-07-17 07:11:12 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/f91d8472ee Pull-request: https://github.com/SerenityOS/serenity/pull/23901 Reviewed-by: https://github.com/trflynn89 ✅
1 changed files with 1 additions and 0 deletions
|
@ -673,6 +673,7 @@ static ErrorOr<void> parse_codestream_tile_header(JPEG2000LoadingContext& contex
|
|||
} else {
|
||||
// FIXME: These are valid main header markers. Parse contents.
|
||||
dbgln("JPEG2000ImageDecoderPlugin: marker {:#04x} not yet implemented in tile header", marker.marker);
|
||||
return Error::from_string_literal("JPEG2000ImageDecoderPlugin: marker not yet implemented in tile header");
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue