LibGfx/JBIG2: Fix a comment typo

This commit is contained in:
Nico Weber 2024-03-26 08:09:32 -04:00 committed by Tim Flynn
commit 6ff446fd30
Notes: sideshowbarker 2024-07-17 03:10:07 +09:00

View file

@ -1595,7 +1595,7 @@ static ErrorOr<Vector<NonnullRefPtr<Symbol>>> symbol_dictionary_decoding_procedu
u32 code_length = ceil(log2(inputs.input_symbols.size() + inputs.number_of_new_symbols));
// 6.5.8.2.2 Decoding a bitmap when REFAGGNINST = 1
// FIXME: This is missing some setps for the SDHUFF = 1 case.
// FIXME: This is missing some steps for the SDHUFF = 1 case.
if (number_of_symbol_instances != 1)
return Error::from_string_literal("JBIG2ImageDecoderPlugin: Unexpected number of symbol instances");