/src/libjxl/lib/jxl/dec_cache.cc
Line | Count | Source (jump to first uncovered line) |
1 | | // Copyright (c) the JPEG XL Project Authors. All rights reserved. |
2 | | // |
3 | | // Use of this source code is governed by a BSD-style |
4 | | // license that can be found in the LICENSE file. |
5 | | |
6 | | #include "lib/jxl/dec_cache.h" |
7 | | |
8 | | #include <jxl/memory_manager.h> |
9 | | |
10 | | #include <algorithm> |
11 | | #include <cstddef> |
12 | | #include <cstdint> |
13 | | #include <utility> |
14 | | |
15 | | #include "lib/jxl/ac_strategy.h" |
16 | | #include "lib/jxl/base/bits.h" |
17 | | #include "lib/jxl/base/data_parallel.h" |
18 | | #include "lib/jxl/base/status.h" |
19 | | #include "lib/jxl/blending.h" |
20 | | #include "lib/jxl/coeff_order.h" |
21 | | #include "lib/jxl/color_encoding_internal.h" |
22 | | #include "lib/jxl/common.h" // JXL_HIGH_PRECISION |
23 | | #include "lib/jxl/frame_dimensions.h" |
24 | | #include "lib/jxl/frame_header.h" |
25 | | #include "lib/jxl/image.h" |
26 | | #include "lib/jxl/image_bundle.h" |
27 | | #include "lib/jxl/image_metadata.h" |
28 | | #include "lib/jxl/loop_filter.h" |
29 | | #include "lib/jxl/memory_manager_internal.h" |
30 | | #include "lib/jxl/render_pipeline/render_pipeline.h" |
31 | | #include "lib/jxl/render_pipeline/stage_blending.h" |
32 | | #include "lib/jxl/render_pipeline/stage_chroma_upsampling.h" |
33 | | #include "lib/jxl/render_pipeline/stage_cms.h" |
34 | | #include "lib/jxl/render_pipeline/stage_epf.h" |
35 | | #include "lib/jxl/render_pipeline/stage_from_linear.h" |
36 | | #include "lib/jxl/render_pipeline/stage_gaborish.h" |
37 | | #include "lib/jxl/render_pipeline/stage_noise.h" |
38 | | #include "lib/jxl/render_pipeline/stage_patches.h" |
39 | | #include "lib/jxl/render_pipeline/stage_splines.h" |
40 | | #include "lib/jxl/render_pipeline/stage_spot.h" |
41 | | #include "lib/jxl/render_pipeline/stage_to_linear.h" |
42 | | #include "lib/jxl/render_pipeline/stage_tone_mapping.h" |
43 | | #include "lib/jxl/render_pipeline/stage_upsampling.h" |
44 | | #include "lib/jxl/render_pipeline/stage_write.h" |
45 | | #include "lib/jxl/render_pipeline/stage_xyb.h" |
46 | | #include "lib/jxl/render_pipeline/stage_ycbcr.h" |
47 | | |
48 | | namespace jxl { |
49 | | |
50 | | Status GroupDecCache::InitOnce(JxlMemoryManager* memory_manager, |
51 | 3.48k | size_t num_passes, size_t used_acs) { |
52 | 5.19k | for (size_t i = 0; i < num_passes; i++) { |
53 | 1.70k | if (num_nzeroes[i].xsize() == 0) { |
54 | | // Allocate enough for a whole group - partial groups on the |
55 | | // right/bottom border just use a subset. The valid size is passed via |
56 | | // Rect. |
57 | | |
58 | 1.70k | JXL_ASSIGN_OR_RETURN(num_nzeroes[i], |
59 | 1.70k | Image3I::Create(memory_manager, kGroupDimInBlocks, |
60 | 1.70k | kGroupDimInBlocks)); |
61 | 1.70k | } |
62 | 1.70k | } |
63 | 3.48k | size_t max_block_area = 0; |
64 | | |
65 | 97.5k | for (uint8_t o = 0; o < AcStrategy::kNumValidStrategies; ++o) { |
66 | 94.0k | AcStrategy acs = AcStrategy::FromRawStrategy(o); |
67 | 94.0k | if ((used_acs & (1 << o)) == 0) continue; |
68 | 50.0k | size_t area = |
69 | 50.0k | acs.covered_blocks_x() * acs.covered_blocks_y() * kDCTBlockSize; |
70 | 50.0k | max_block_area = std::max(area, max_block_area); |
71 | 50.0k | } |
72 | | |
73 | 3.48k | if (max_block_area > max_block_area_) { |
74 | 2.25k | max_block_area_ = max_block_area; |
75 | | // We need 3x float blocks for dequantized coefficients and 1x for scratch |
76 | | // space for transforms. |
77 | 2.25k | JXL_ASSIGN_OR_RETURN( |
78 | 2.25k | float_memory_, |
79 | 2.25k | AlignedMemory::Create(memory_manager, |
80 | 2.25k | max_block_area_ * 7 * sizeof(float))); |
81 | | // We need 3x int32 or int16 blocks for quantized coefficients. |
82 | 2.25k | JXL_ASSIGN_OR_RETURN( |
83 | 2.25k | int32_memory_, |
84 | 2.25k | AlignedMemory::Create(memory_manager, |
85 | 2.25k | max_block_area_ * 3 * sizeof(int32_t))); |
86 | 2.25k | JXL_ASSIGN_OR_RETURN( |
87 | 2.25k | int16_memory_, |
88 | 2.25k | AlignedMemory::Create(memory_manager, |
89 | 2.25k | max_block_area_ * 3 * sizeof(int16_t))); |
90 | 2.25k | } |
91 | | |
92 | 3.48k | dec_group_block = float_memory_.address<float>(); |
93 | 3.48k | scratch_space = dec_group_block + max_block_area_ * 3; |
94 | 3.48k | dec_group_qblock = int32_memory_.address<int32_t>(); |
95 | 3.48k | dec_group_qblock16 = int16_memory_.address<int16_t>(); |
96 | 3.48k | return true; |
97 | 3.48k | } |
98 | | |
99 | | // Initialize the decoder state after all of DC is decoded. |
100 | 21.7k | Status PassesDecoderState::InitForAC(size_t num_passes, ThreadPool* pool) { |
101 | 21.7k | shared_storage.coeff_order_size = 0; |
102 | 609k | for (uint8_t o = 0; o < AcStrategy::kNumValidStrategies; ++o) { |
103 | 588k | if (((1 << o) & used_acs) == 0) continue; |
104 | 2.29k | uint8_t ord = kStrategyOrder[o]; |
105 | 2.29k | shared_storage.coeff_order_size = |
106 | 2.29k | std::max(kCoeffOrderOffset[3 * (ord + 1)] * kDCTBlockSize, |
107 | 2.29k | shared_storage.coeff_order_size); |
108 | 2.29k | } |
109 | 21.7k | size_t sz = num_passes * shared_storage.coeff_order_size; |
110 | 21.7k | if (sz > shared_storage.coeff_orders.size()) { |
111 | 797 | shared_storage.coeff_orders.resize(sz); |
112 | 797 | } |
113 | 21.7k | return true; |
114 | 21.7k | } |
115 | | |
116 | | Status PassesDecoderState::PreparePipeline(const FrameHeader& frame_header, |
117 | | const ImageMetadata* metadata, |
118 | | ImageBundle* decoded, |
119 | 22.3k | PipelineOptions options) { |
120 | 22.3k | JxlMemoryManager* memory_manager = this->memory_manager(); |
121 | 22.3k | size_t num_c = 3 + frame_header.nonserialized_metadata->m.num_extra_channels; |
122 | 22.3k | bool render_noise = |
123 | 22.3k | (options.render_noise && (frame_header.flags & FrameHeader::kNoise) != 0); |
124 | 22.3k | size_t num_tmp_c = render_noise ? 3 : 0; |
125 | | |
126 | 22.3k | if (frame_header.CanBeReferenced()) { |
127 | | // Necessary so that SetInputSizes() can allocate output buffers as needed. |
128 | 10.4k | frame_storage_for_referencing = ImageBundle(memory_manager, metadata); |
129 | 10.4k | } |
130 | | |
131 | 22.3k | RenderPipeline::Builder builder(memory_manager, num_c + num_tmp_c); |
132 | | |
133 | 22.3k | if (options.use_slow_render_pipeline) { |
134 | 0 | builder.UseSimpleImplementation(); |
135 | 0 | } |
136 | | |
137 | 22.3k | if (!frame_header.chroma_subsampling.Is444()) { |
138 | 5.51k | for (size_t c = 0; c < 3; c++) { |
139 | 4.13k | if (frame_header.chroma_subsampling.HShift(c) != 0) { |
140 | 1.41k | JXL_RETURN_IF_ERROR( |
141 | 1.41k | builder.AddStage(GetChromaUpsamplingStage(c, /*horizontal=*/true))); |
142 | 1.41k | } |
143 | 4.13k | if (frame_header.chroma_subsampling.VShift(c) != 0) { |
144 | 2.34k | JXL_RETURN_IF_ERROR(builder.AddStage( |
145 | 2.34k | GetChromaUpsamplingStage(c, /*horizontal=*/false))); |
146 | 2.34k | } |
147 | 4.13k | } |
148 | 1.37k | } |
149 | | |
150 | 22.3k | if (frame_header.loop_filter.gab) { |
151 | 13.5k | JXL_RETURN_IF_ERROR( |
152 | 13.5k | builder.AddStage(GetGaborishStage(frame_header.loop_filter))); |
153 | 13.5k | } |
154 | | |
155 | 22.3k | { |
156 | 22.3k | const LoopFilter& lf = frame_header.loop_filter; |
157 | 22.3k | if (lf.epf_iters >= 3) { |
158 | 649 | JXL_RETURN_IF_ERROR( |
159 | 649 | builder.AddStage(GetEPFStage(lf, sigma, EpfStage::Zero))); |
160 | 649 | } |
161 | 22.3k | if (lf.epf_iters >= 1) { |
162 | 12.1k | JXL_RETURN_IF_ERROR( |
163 | 12.1k | builder.AddStage(GetEPFStage(lf, sigma, EpfStage::One))); |
164 | 12.1k | } |
165 | 22.3k | if (lf.epf_iters >= 2) { |
166 | 11.1k | JXL_RETURN_IF_ERROR( |
167 | 11.1k | builder.AddStage(GetEPFStage(lf, sigma, EpfStage::Two))); |
168 | 11.1k | } |
169 | 22.3k | } |
170 | | |
171 | 22.3k | bool late_ec_upsample = frame_header.upsampling != 1; |
172 | 22.3k | for (auto ecups : frame_header.extra_channel_upsampling) { |
173 | 6.58k | if (ecups != frame_header.upsampling) { |
174 | | // If patches are applied, either frame_header.upsampling == 1 or |
175 | | // late_ec_upsample is true. |
176 | 2.51k | late_ec_upsample = false; |
177 | 2.51k | } |
178 | 6.58k | } |
179 | | |
180 | 22.3k | if (!late_ec_upsample) { |
181 | 12.0k | for (size_t ec = 0; ec < frame_header.extra_channel_upsampling.size(); |
182 | 6.48k | ec++) { |
183 | 5.55k | if (frame_header.extra_channel_upsampling[ec] != 1) { |
184 | 2.58k | JXL_RETURN_IF_ERROR(builder.AddStage(GetUpsamplingStage( |
185 | 2.58k | frame_header.nonserialized_metadata->transform_data, 3 + ec, |
186 | 2.58k | CeilLog2Nonzero(frame_header.extra_channel_upsampling[ec])))); |
187 | 2.58k | } |
188 | 5.55k | } |
189 | 6.48k | } |
190 | | |
191 | 22.3k | if ((frame_header.flags & FrameHeader::kPatches) != 0) { |
192 | 703 | JXL_RETURN_IF_ERROR(builder.AddStage(GetPatchesStage( |
193 | 703 | &shared->image_features.patches, |
194 | 703 | &frame_header.nonserialized_metadata->m.extra_channel_info))); |
195 | 703 | } |
196 | 22.3k | if ((frame_header.flags & FrameHeader::kSplines) != 0) { |
197 | 2.90k | JXL_RETURN_IF_ERROR( |
198 | 2.90k | builder.AddStage(GetSplineStage(&shared->image_features.splines))); |
199 | 2.90k | } |
200 | | |
201 | 22.3k | if (frame_header.upsampling != 1) { |
202 | 16.2k | size_t nb_channels = |
203 | 16.2k | 3 + |
204 | 16.2k | (late_ec_upsample ? frame_header.extra_channel_upsampling.size() : 0); |
205 | 66.0k | for (size_t c = 0; c < nb_channels; c++) { |
206 | 49.7k | JXL_RETURN_IF_ERROR(builder.AddStage(GetUpsamplingStage( |
207 | 49.7k | frame_header.nonserialized_metadata->transform_data, c, |
208 | 49.7k | CeilLog2Nonzero(frame_header.upsampling)))); |
209 | 49.7k | } |
210 | 16.2k | } |
211 | 22.3k | if (render_noise) { |
212 | 1.73k | JXL_RETURN_IF_ERROR(builder.AddStage(GetConvolveNoiseStage(num_c))); |
213 | 1.73k | JXL_RETURN_IF_ERROR(builder.AddStage(GetAddNoiseStage( |
214 | 1.73k | shared->image_features.noise_params, shared->cmap.base(), num_c))); |
215 | 1.73k | } |
216 | 22.3k | if (frame_header.dc_level != 0) { |
217 | 10.1k | JXL_RETURN_IF_ERROR(builder.AddStage(GetWriteToImage3FStage( |
218 | 10.1k | memory_manager, &shared_storage.dc_frames[frame_header.dc_level - 1]))); |
219 | 10.1k | } |
220 | | |
221 | 22.3k | if (frame_header.CanBeReferenced() && |
222 | 22.3k | frame_header.save_before_color_transform) { |
223 | 3.00k | JXL_RETURN_IF_ERROR(builder.AddStage(GetWriteToImageBundleStage( |
224 | 3.00k | &frame_storage_for_referencing, output_encoding_info))); |
225 | 3.00k | } |
226 | | |
227 | 22.3k | bool has_alpha = false; |
228 | 22.3k | size_t alpha_c = 0; |
229 | 22.9k | for (size_t i = 0; i < metadata->extra_channel_info.size(); i++) { |
230 | 2.62k | if (metadata->extra_channel_info[i].type == ExtraChannel::kAlpha) { |
231 | 2.02k | has_alpha = true; |
232 | 2.02k | alpha_c = 3 + i; |
233 | 2.02k | break; |
234 | 2.02k | } |
235 | 2.62k | } |
236 | | |
237 | 22.3k | if (fast_xyb_srgb8_conversion) { |
238 | | #if !JXL_HIGH_PRECISION |
239 | | JXL_ENSURE(!NeedsBlending(frame_header)); |
240 | | JXL_ENSURE(!frame_header.CanBeReferenced() || |
241 | | frame_header.save_before_color_transform); |
242 | | JXL_ENSURE(!options.render_spotcolors || |
243 | | !metadata->Find(ExtraChannel::kSpotColor)); |
244 | | bool is_rgba = (main_output.format.num_channels == 4); |
245 | | uint8_t* rgb_output = reinterpret_cast<uint8_t*>(main_output.buffer); |
246 | | JXL_RETURN_IF_ERROR(builder.AddStage( |
247 | | GetFastXYBTosRGB8Stage(rgb_output, main_output.stride, width, height, |
248 | | is_rgba, has_alpha, alpha_c))); |
249 | | #endif |
250 | 22.3k | } else { |
251 | 22.3k | bool linear = false; |
252 | 22.3k | if (frame_header.color_transform == ColorTransform::kYCbCr) { |
253 | 1.42k | JXL_RETURN_IF_ERROR(builder.AddStage(GetYCbCrStage())); |
254 | 20.9k | } else if (frame_header.color_transform == ColorTransform::kXYB) { |
255 | 16.9k | JXL_RETURN_IF_ERROR(builder.AddStage(GetXYBStage(output_encoding_info))); |
256 | 16.9k | if (output_encoding_info.color_encoding.GetColorSpace() != |
257 | 16.9k | ColorSpace::kXYB) { |
258 | 16.9k | linear = true; |
259 | 16.9k | } |
260 | 16.9k | } // Nothing to do for kNone. |
261 | | |
262 | 22.3k | if (options.coalescing && NeedsBlending(frame_header)) { |
263 | 5.56k | if (linear) { |
264 | 4.25k | JXL_RETURN_IF_ERROR( |
265 | 4.25k | builder.AddStage(GetFromLinearStage(output_encoding_info))); |
266 | 4.25k | linear = false; |
267 | 4.25k | } |
268 | 5.56k | JXL_RETURN_IF_ERROR(builder.AddStage(GetBlendingStage( |
269 | 5.56k | frame_header, this, output_encoding_info.color_encoding))); |
270 | 5.56k | } |
271 | | |
272 | 22.3k | if (options.coalescing && frame_header.CanBeReferenced() && |
273 | 22.3k | !frame_header.save_before_color_transform) { |
274 | 7.46k | if (linear) { |
275 | 2.27k | JXL_RETURN_IF_ERROR( |
276 | 2.27k | builder.AddStage(GetFromLinearStage(output_encoding_info))); |
277 | 2.27k | linear = false; |
278 | 2.27k | } |
279 | 7.46k | JXL_RETURN_IF_ERROR(builder.AddStage(GetWriteToImageBundleStage( |
280 | 7.46k | &frame_storage_for_referencing, output_encoding_info))); |
281 | 7.46k | } |
282 | | |
283 | 22.3k | if (options.render_spotcolors && |
284 | 22.3k | frame_header.nonserialized_metadata->m.Find(ExtraChannel::kSpotColor)) { |
285 | 200 | for (size_t i = 0; i < metadata->extra_channel_info.size(); i++) { |
286 | | // Don't use Find() because there may be multiple spot color channels. |
287 | 105 | const ExtraChannelInfo& eci = metadata->extra_channel_info[i]; |
288 | 105 | if (eci.type == ExtraChannel::kSpotColor) { |
289 | 95 | JXL_RETURN_IF_ERROR( |
290 | 95 | builder.AddStage(GetSpotColorStage(i, eci.spot_color))); |
291 | 95 | } |
292 | 105 | } |
293 | 95 | } |
294 | | |
295 | 22.3k | auto tone_mapping_stage = GetToneMappingStage(output_encoding_info); |
296 | 22.3k | if (tone_mapping_stage) { |
297 | 0 | if (!linear) { |
298 | 0 | auto to_linear_stage = GetToLinearStage(output_encoding_info); |
299 | 0 | if (!to_linear_stage) { |
300 | 0 | if (!output_encoding_info.cms_set) { |
301 | 0 | return JXL_FAILURE("Cannot tonemap this colorspace without a CMS"); |
302 | 0 | } |
303 | 0 | auto cms_stage = GetCmsStage(output_encoding_info); |
304 | 0 | if (cms_stage) { |
305 | 0 | JXL_RETURN_IF_ERROR(builder.AddStage(std::move(cms_stage))); |
306 | 0 | } |
307 | 0 | } else { |
308 | 0 | JXL_RETURN_IF_ERROR(builder.AddStage(std::move(to_linear_stage))); |
309 | 0 | } |
310 | 0 | linear = true; |
311 | 0 | } |
312 | 0 | JXL_RETURN_IF_ERROR(builder.AddStage(std::move(tone_mapping_stage))); |
313 | 0 | } |
314 | | |
315 | 22.3k | if (linear) { |
316 | 10.4k | const size_t channels_src = |
317 | 10.4k | (output_encoding_info.orig_color_encoding.IsCMYK() |
318 | 10.4k | ? 4 |
319 | 10.4k | : output_encoding_info.orig_color_encoding.Channels()); |
320 | 10.4k | const size_t channels_dst = |
321 | 10.4k | output_encoding_info.color_encoding.Channels(); |
322 | 10.4k | bool mixing_color_and_grey = (channels_dst != channels_src); |
323 | 10.4k | if ((output_encoding_info.color_encoding_is_original) || |
324 | 10.4k | (!output_encoding_info.cms_set) || mixing_color_and_grey) { |
325 | | // in those cases we only need a linear stage in other cases we attempt |
326 | | // to obtain a cms stage: the cases are |
327 | | // - output_encoding_info.color_encoding_is_original: no cms stage |
328 | | // needed because it would be a no-op |
329 | | // - !output_encoding_info.cms_set: can't use the cms, so no point in |
330 | | // trying to add a cms stage |
331 | | // - mixing_color_and_grey: cms stage can't handle that |
332 | | // TODO(firsching): remove "mixing_color_and_grey" condition after |
333 | | // adding support for greyscale to cms stage. |
334 | 10.4k | JXL_RETURN_IF_ERROR( |
335 | 10.4k | builder.AddStage(GetFromLinearStage(output_encoding_info))); |
336 | 10.4k | } else { |
337 | 0 | if (!output_encoding_info.linear_color_encoding.CreateICC()) { |
338 | 0 | return JXL_FAILURE("Failed to create ICC"); |
339 | 0 | } |
340 | 0 | auto cms_stage = GetCmsStage(output_encoding_info); |
341 | 0 | if (cms_stage) { |
342 | 0 | JXL_RETURN_IF_ERROR(builder.AddStage(std::move(cms_stage))); |
343 | 0 | } |
344 | 0 | } |
345 | 10.4k | linear = false; |
346 | 10.4k | } |
347 | 22.3k | (void)linear; |
348 | | |
349 | 22.3k | if (main_output.callback.IsPresent() || main_output.buffer) { |
350 | 1.39k | JXL_RETURN_IF_ERROR(builder.AddStage(GetWriteToOutputStage( |
351 | 1.39k | main_output, width, height, has_alpha, unpremul_alpha, alpha_c, |
352 | 1.39k | undo_orientation, extra_output, memory_manager))); |
353 | 20.9k | } else { |
354 | 20.9k | JXL_RETURN_IF_ERROR(builder.AddStage( |
355 | 20.9k | GetWriteToImageBundleStage(decoded, output_encoding_info))); |
356 | 20.9k | } |
357 | 22.3k | } |
358 | 22.3k | JXL_ASSIGN_OR_RETURN(render_pipeline, |
359 | 22.3k | std::move(builder).Finalize(shared->frame_dim)); |
360 | 22.3k | return render_pipeline->IsInitialized(); |
361 | 22.3k | } |
362 | | |
363 | | } // namespace jxl |