Skip to content

Commit d529c72

Browse files
committed
LibGfx/JPEG2000: Support "segmentation symbols" code block style
1 parent c513123 commit d529c72

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

Tests/LibGfx/TestImageDecoder.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,7 @@ TEST_CASE(test_jpeg2000_decode)
697697
TEST_INPUT("jpeg2000/openjpeg-lossless-rgba-u8-prog0-tile3x2-cblk4x16-tp3-layers3-res2-mct.jp2"sv),
698698
TEST_INPUT("jpeg2000/jasper-rgba-u8-cbstyle-02-resetprob.jp2"sv),
699699
TEST_INPUT("jpeg2000/jasper-rgba-u8-cbstyle-08-vcausal.jp2"sv),
700+
TEST_INPUT("jpeg2000/jasper-rgba-u8-cbstyle-32-segsym.jp2"sv),
700701
TEST_INPUT("jpeg2000/jasper-tile3x2-res5.jp2"sv),
701702
TEST_INPUT("jpeg2000/openjpeg-lossless-rgba-u8-prog0-SOP.jp2"sv),
702703
TEST_INPUT("jpeg2000/openjpeg-lossless-rgba-u8-prog0-EPH.jp2"sv),
@@ -789,7 +790,6 @@ TEST_CASE(test_jpeg2000_decode_unsupported)
789790
TEST_INPUT("jpeg2000/jasper-rgba-u8-cbstyle-01-bypass.jp2"sv),
790791
TEST_INPUT("jpeg2000/jasper-rgba-u8-cbstyle-04-termall.jp2"sv),
791792
TEST_INPUT("jpeg2000/jasper-rgba-u8-cbstyle-16-pterm.jp2"sv),
792-
TEST_INPUT("jpeg2000/jasper-rgba-u8-cbstyle-32-segsym.jp2"sv),
793793
TEST_INPUT("jpeg2000/jasper-rgba-u8-cbstyle-63-all.jp2"sv),
794794
TEST_INPUT("jpeg2000/kakadu-lossless-cmyk-u8-prog1-layers1-res6.jp2"sv),
795795
TEST_INPUT("jpeg2000/kakadu-lossless-cmyka-u8-prog1-layers1-res6.jp2"sv),

Userland/Libraries/LibGfx/ImageFormats/JPEG2000BitplaneDecoding.h

+12
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ namespace Gfx::JPEG2000 {
1616
struct BitplaneDecodingOptions {
1717
bool reset_context_probabilities_each_pass { false };
1818
bool uses_vertically_causal_context { false };
19+
bool uses_segmentation_symbols { false };
1920
};
2021

2122
inline ErrorOr<void> decode_code_block(Span2D<i16> result, SubBand sub_band, int number_of_coding_passes, ReadonlyBytes data, int M_b, int p, BitplaneDecodingOptions options = {})
@@ -466,6 +467,17 @@ inline ErrorOr<void> decode_code_block(Span2D<i16> result, SubBand sub_band, int
466467
break;
467468
case 2:
468469
cleanup_pass(current_bitplane, pass);
470+
471+
if (options.uses_segmentation_symbols) {
472+
// D.5 Error resilience segmentation symbol
473+
u8 segmentation_symbol = arithmetic_decoder.get_next_bit(uniform_context);
474+
segmentation_symbol = (segmentation_symbol << 1) | arithmetic_decoder.get_next_bit(uniform_context);
475+
segmentation_symbol = (segmentation_symbol << 1) | arithmetic_decoder.get_next_bit(uniform_context);
476+
segmentation_symbol = (segmentation_symbol << 1) | arithmetic_decoder.get_next_bit(uniform_context);
477+
if (segmentation_symbol != 0xA)
478+
return Error::from_string_literal("JPEG2000ImageDecoderPlugin: Invalid segmentation symbol");
479+
}
480+
469481
++current_bitplane;
470482
break;
471483
}

Userland/Libraries/LibGfx/ImageFormats/JPEG2000Loader.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1474,7 +1474,7 @@ static ErrorOr<u32> read_one_packet_header(JPEG2000LoadingContext& context, Tile
14741474
u32 const current_layer_index = progression_data.layer;
14751475

14761476
// FIXME: Relax. Will need implementing D.5, D.6, D.7, and probably more.
1477-
if ((coding_parameters.code_block_style & ~(8 | 2)) != 0)
1477+
if ((coding_parameters.code_block_style & ~(0x20 | 8 | 2)) != 0)
14781478
return Error::from_string_literal("JPEG2000ImageDecoderPlugin: Code-block style not yet implemented");
14791479

14801480
// B.10 Packet header information coding
@@ -1822,6 +1822,7 @@ static ErrorOr<void> decode_bitplanes_to_coefficients(JPEG2000LoadingContext& co
18221822
JPEG2000::BitplaneDecodingOptions bitplane_decoding_options;
18231823
bitplane_decoding_options.reset_context_probabilities_each_pass = coding_style.reset_context_probabilities();
18241824
bitplane_decoding_options.uses_vertically_causal_context = coding_style.uses_vertically_causal_context();
1825+
bitplane_decoding_options.uses_segmentation_symbols = coding_style.uses_segmentation_symbols();
18251826

18261827
int M_b = compute_M_b(context, tile, component_index, sub_band_type, r, N_L);
18271828

0 commit comments

Comments
 (0)