/src/libjxl/lib/jxl/dec_cache.cc
Line | Count | Source |
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 | 42.4k | size_t num_passes, size_t used_acs) { |
52 | 54.3k | for (size_t i = 0; i < num_passes; i++) { |
53 | 11.9k | 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 | 3.69k | JXL_ASSIGN_OR_RETURN(num_nzeroes[i], |
59 | 3.69k | Image3I::Create(memory_manager, kGroupDimInBlocks, |
60 | 3.69k | kGroupDimInBlocks)); |
61 | 3.69k | } |
62 | 11.9k | } |
63 | 42.4k | size_t max_block_area = 0; |
64 | | |
65 | 1.18M | for (uint8_t o = 0; o < AcStrategy::kNumValidStrategies; ++o) { |
66 | 1.14M | AcStrategy acs = AcStrategy::FromRawStrategy(o); |
67 | 1.14M | if ((used_acs & (1 << o)) == 0) continue; |
68 | 895k | size_t area = |
69 | 895k | acs.covered_blocks_x() * acs.covered_blocks_y() * kDCTBlockSize; |
70 | 895k | max_block_area = std::max(area, max_block_area); |
71 | 895k | } |
72 | | |
73 | 42.4k | if (max_block_area > max_block_area_) { |
74 | 16.1k | max_block_area_ = max_block_area; |
75 | | // We need 3x float blocks for dequantized coefficients and 1x for scratch |
76 | | // space for transforms. |
77 | 16.1k | JXL_ASSIGN_OR_RETURN( |
78 | 16.1k | float_memory_, |
79 | 16.1k | AlignedMemory::Create(memory_manager, |
80 | 16.1k | max_block_area_ * 7 * sizeof(float))); |
81 | | // We need 3x int32 or int16 blocks for quantized coefficients. |
82 | 16.1k | JXL_ASSIGN_OR_RETURN( |
83 | 16.1k | int32_memory_, |
84 | 16.1k | AlignedMemory::Create(memory_manager, |
85 | 16.1k | max_block_area_ * 3 * sizeof(int32_t))); |
86 | 16.1k | JXL_ASSIGN_OR_RETURN( |
87 | 16.1k | int16_memory_, |
88 | 16.1k | AlignedMemory::Create(memory_manager, |
89 | 16.1k | max_block_area_ * 3 * sizeof(int16_t))); |
90 | 16.1k | } |
91 | | |
92 | 42.4k | dec_group_block = float_memory_.address<float>(); |
93 | 42.4k | scratch_space = dec_group_block + max_block_area_ * 3; |
94 | 42.4k | dec_group_qblock = int32_memory_.address<int32_t>(); |
95 | 42.4k | dec_group_qblock16 = int16_memory_.address<int16_t>(); |
96 | 42.4k | return true; |
97 | 42.4k | } |
98 | | |
99 | | // Initialize the decoder state after all of DC is decoded. |
100 | 35.9k | Status PassesDecoderState::InitForAC(size_t num_passes, ThreadPool* pool) { |
101 | 35.9k | shared_storage.coeff_order_size = 0; |
102 | 1.00M | for (uint8_t o = 0; o < AcStrategy::kNumValidStrategies; ++o) { |
103 | 971k | if (((1 << o) & used_acs) == 0) continue; |
104 | 18.6k | uint8_t ord = kStrategyOrder[o]; |
105 | 18.6k | shared_storage.coeff_order_size = |
106 | 18.6k | std::max(kCoeffOrderOffset[3 * (ord + 1)] * kDCTBlockSize, |
107 | 18.6k | shared_storage.coeff_order_size); |
108 | 18.6k | } |
109 | 35.9k | size_t sz = num_passes * shared_storage.coeff_order_size; |
110 | 35.9k | if (sz > shared_storage.coeff_orders.size()) { |
111 | 4.17k | shared_storage.coeff_orders.resize(sz); |
112 | 4.17k | } |
113 | 35.9k | return true; |
114 | 35.9k | } |
115 | | |
116 | | Status PassesDecoderState::PreparePipeline(const FrameHeader& frame_header, |
117 | | const ImageMetadata* metadata, |
118 | | ImageBundle* decoded, |
119 | 48.6k | PipelineOptions options) { |
120 | 48.6k | JxlMemoryManager* memory_manager = this->memory_manager(); |
121 | 48.6k | size_t num_c = 3 + frame_header.nonserialized_metadata->m.num_extra_channels; |
122 | 48.6k | size_t num_tmp_c = options.render_noise ? 3 : 0; |
123 | | |
124 | 48.6k | if (frame_header.CanBeReferenced()) { |
125 | | // Necessary so that SetInputSizes() can allocate output buffers as needed. |
126 | 21.0k | frame_storage_for_referencing = ImageBundle(memory_manager, metadata); |
127 | 21.0k | } |
128 | | |
129 | 48.6k | RenderPipeline::Builder builder(memory_manager, num_c + num_tmp_c); |
130 | | |
131 | 48.6k | if (options.use_slow_render_pipeline) { |
132 | 0 | builder.UseSimpleImplementation(); |
133 | 0 | } |
134 | | |
135 | 48.6k | if (!frame_header.chroma_subsampling.Is444()) { |
136 | 6.97k | for (size_t c = 0; c < 3; c++) { |
137 | 5.23k | if (frame_header.chroma_subsampling.HShift(c) != 0) { |
138 | 2.07k | JXL_RETURN_IF_ERROR( |
139 | 2.07k | builder.AddStage(GetChromaUpsamplingStage(c, /*horizontal=*/true))); |
140 | 2.07k | } |
141 | 5.23k | if (frame_header.chroma_subsampling.VShift(c) != 0) { |
142 | 2.45k | JXL_RETURN_IF_ERROR(builder.AddStage( |
143 | 2.45k | GetChromaUpsamplingStage(c, /*horizontal=*/false))); |
144 | 2.45k | } |
145 | 5.23k | } |
146 | 1.74k | } |
147 | | |
148 | 48.6k | if (frame_header.loop_filter.gab) { |
149 | 32.9k | JXL_RETURN_IF_ERROR( |
150 | 32.9k | builder.AddStage(GetGaborishStage(frame_header.loop_filter))); |
151 | 32.9k | } |
152 | | |
153 | 48.6k | { |
154 | 48.6k | const LoopFilter& lf = frame_header.loop_filter; |
155 | 48.6k | if (lf.epf_iters >= 3) { |
156 | 967 | JXL_RETURN_IF_ERROR( |
157 | 967 | builder.AddStage(GetEPFStage(lf, sigma, EpfStage::Zero))); |
158 | 967 | } |
159 | 48.6k | if (lf.epf_iters >= 1) { |
160 | 27.9k | JXL_RETURN_IF_ERROR( |
161 | 27.9k | builder.AddStage(GetEPFStage(lf, sigma, EpfStage::One))); |
162 | 27.9k | } |
163 | 48.6k | if (lf.epf_iters >= 2) { |
164 | 26.3k | JXL_RETURN_IF_ERROR( |
165 | 26.3k | builder.AddStage(GetEPFStage(lf, sigma, EpfStage::Two))); |
166 | 26.3k | } |
167 | 48.6k | } |
168 | | |
169 | 48.6k | bool late_ec_upsample = frame_header.upsampling != 1; |
170 | 48.6k | for (auto ecups : frame_header.extra_channel_upsampling) { |
171 | 9.61k | if (ecups != frame_header.upsampling) { |
172 | | // If patches are applied, either frame_header.upsampling == 1 or |
173 | | // late_ec_upsample is true. |
174 | 3.68k | late_ec_upsample = false; |
175 | 3.68k | } |
176 | 9.61k | } |
177 | | |
178 | 48.6k | if (!late_ec_upsample) { |
179 | 35.6k | for (size_t ec = 0; ec < frame_header.extra_channel_upsampling.size(); |
180 | 26.7k | ec++) { |
181 | 8.89k | if (frame_header.extra_channel_upsampling[ec] != 1) { |
182 | 3.70k | JXL_RETURN_IF_ERROR(builder.AddStage(GetUpsamplingStage( |
183 | 3.70k | memory_manager, frame_header.nonserialized_metadata->transform_data, |
184 | 3.70k | 3 + ec, |
185 | 3.70k | CeilLog2Nonzero(frame_header.extra_channel_upsampling[ec])))); |
186 | 3.70k | } |
187 | 8.89k | } |
188 | 26.7k | } |
189 | | |
190 | 48.6k | if ((frame_header.flags & FrameHeader::kPatches) != 0) { |
191 | 7.30k | JXL_RETURN_IF_ERROR(builder.AddStage(GetPatchesStage( |
192 | 7.30k | &shared->image_features.patches, |
193 | 7.30k | &frame_header.nonserialized_metadata->m.extra_channel_info))); |
194 | 7.30k | } |
195 | 48.6k | if ((frame_header.flags & FrameHeader::kSplines) != 0) { |
196 | 632 | JXL_RETURN_IF_ERROR( |
197 | 632 | builder.AddStage(GetSplineStage(&shared->image_features.splines))); |
198 | 632 | } |
199 | | |
200 | 48.6k | if (frame_header.upsampling != 1) { |
201 | 22.0k | size_t nb_channels = |
202 | 22.0k | 3 + |
203 | 22.0k | (late_ec_upsample ? frame_header.extra_channel_upsampling.size() : 0); |
204 | 88.8k | for (size_t c = 0; c < nb_channels; c++) { |
205 | 66.8k | JXL_RETURN_IF_ERROR(builder.AddStage(GetUpsamplingStage( |
206 | 66.8k | memory_manager, frame_header.nonserialized_metadata->transform_data, |
207 | 66.8k | c, CeilLog2Nonzero(frame_header.upsampling)))); |
208 | 66.8k | } |
209 | 22.0k | } |
210 | 48.6k | if (options.render_noise) { |
211 | 3.55k | JXL_RETURN_IF_ERROR(builder.AddStage(GetConvolveNoiseStage(num_c))); |
212 | 3.55k | JXL_RETURN_IF_ERROR(builder.AddStage(GetAddNoiseStage( |
213 | 3.55k | shared->image_features.noise_params, shared->cmap.base(), num_c))); |
214 | 3.55k | } |
215 | 48.6k | if (frame_header.dc_level != 0) { |
216 | 7.49k | JXL_RETURN_IF_ERROR(builder.AddStage(GetWriteToImage3FStage( |
217 | 7.49k | memory_manager, &shared_storage.dc_frames[frame_header.dc_level - 1]))); |
218 | 7.49k | } |
219 | | |
220 | 48.6k | if (frame_header.CanBeReferenced() && |
221 | 21.0k | frame_header.save_before_color_transform) { |
222 | 11.2k | JXL_RETURN_IF_ERROR(builder.AddStage(GetWriteToImageBundleStage( |
223 | 11.2k | &frame_storage_for_referencing, output_encoding_info))); |
224 | 11.2k | } |
225 | | |
226 | 48.6k | bool has_alpha = false; |
227 | 48.6k | size_t alpha_c = 0; |
228 | 54.2k | for (size_t i = 0; i < metadata->extra_channel_info.size(); i++) { |
229 | 7.29k | if (metadata->extra_channel_info[i].type == ExtraChannel::kAlpha) { |
230 | 1.71k | has_alpha = true; |
231 | 1.71k | alpha_c = 3 + i; |
232 | 1.71k | break; |
233 | 1.71k | } |
234 | 7.29k | } |
235 | | |
236 | 48.6k | if (fast_xyb_srgb8_conversion) { |
237 | | #if !JXL_HIGH_PRECISION |
238 | | JXL_ENSURE(!NeedsBlending(frame_header)); |
239 | | JXL_ENSURE(!frame_header.CanBeReferenced() || |
240 | | frame_header.save_before_color_transform); |
241 | | JXL_ENSURE(!options.render_spotcolors || |
242 | | !metadata->Find(ExtraChannel::kSpotColor)); |
243 | | bool is_rgba = (main_output.format.num_channels == 4); |
244 | | uint8_t* rgb_output = reinterpret_cast<uint8_t*>(main_output.buffer); |
245 | | JXL_RETURN_IF_ERROR(builder.AddStage( |
246 | | GetFastXYBTosRGB8Stage(rgb_output, main_output.stride, width, height, |
247 | | is_rgba, has_alpha, alpha_c))); |
248 | | #endif |
249 | 48.6k | } else { |
250 | 48.6k | bool linear = false; |
251 | 48.6k | if (frame_header.color_transform == ColorTransform::kYCbCr) { |
252 | 1.80k | JXL_RETURN_IF_ERROR(builder.AddStage(GetYCbCrStage())); |
253 | 46.8k | } else if (frame_header.color_transform == ColorTransform::kXYB) { |
254 | 18.2k | JXL_RETURN_IF_ERROR(builder.AddStage(GetXYBStage(output_encoding_info))); |
255 | 18.2k | if (output_encoding_info.color_encoding.GetColorSpace() != |
256 | 18.2k | ColorSpace::kXYB) { |
257 | 18.2k | linear = true; |
258 | 18.2k | } |
259 | 18.2k | } // Nothing to do for kNone. |
260 | | |
261 | 48.6k | if (options.coalescing && NeedsBlending(frame_header)) { |
262 | 10.8k | if (linear) { |
263 | 3.94k | JXL_RETURN_IF_ERROR( |
264 | 3.94k | builder.AddStage(GetFromLinearStage(output_encoding_info))); |
265 | 3.94k | linear = false; |
266 | 3.94k | } |
267 | 10.8k | JXL_RETURN_IF_ERROR(builder.AddStage(GetBlendingStage( |
268 | 10.8k | frame_header, this, output_encoding_info.color_encoding))); |
269 | 10.8k | } |
270 | | |
271 | 48.6k | if (options.coalescing && frame_header.CanBeReferenced() && |
272 | 21.0k | !frame_header.save_before_color_transform) { |
273 | 9.82k | if (linear) { |
274 | 912 | JXL_RETURN_IF_ERROR( |
275 | 912 | builder.AddStage(GetFromLinearStage(output_encoding_info))); |
276 | 912 | linear = false; |
277 | 912 | } |
278 | 9.82k | JXL_RETURN_IF_ERROR(builder.AddStage(GetWriteToImageBundleStage( |
279 | 9.82k | &frame_storage_for_referencing, output_encoding_info))); |
280 | 9.82k | } |
281 | | |
282 | 48.6k | if (options.render_spotcolors && |
283 | 35.9k | frame_header.nonserialized_metadata->m.Find(ExtraChannel::kSpotColor)) { |
284 | 6.01k | for (size_t i = 0; i < metadata->extra_channel_info.size(); i++) { |
285 | | // Don't use Find() because there may be multiple spot color channels. |
286 | 4.76k | const ExtraChannelInfo& eci = metadata->extra_channel_info[i]; |
287 | 4.76k | if (eci.type == ExtraChannel::kSpotColor) { |
288 | 1.25k | JXL_RETURN_IF_ERROR( |
289 | 1.25k | builder.AddStage(GetSpotColorStage(i, eci.spot_color))); |
290 | 1.25k | } |
291 | 4.76k | } |
292 | 1.25k | } |
293 | | |
294 | 48.6k | auto tone_mapping_stage = GetToneMappingStage(output_encoding_info); |
295 | 48.6k | if (tone_mapping_stage) { |
296 | 0 | if (!linear) { |
297 | 0 | auto to_linear_stage = GetToLinearStage(output_encoding_info); |
298 | 0 | if (!to_linear_stage) { |
299 | 0 | if (!output_encoding_info.cms_set) { |
300 | 0 | return JXL_FAILURE("Cannot tonemap this colorspace without a CMS"); |
301 | 0 | } |
302 | 0 | auto cms_stage = GetCmsStage(output_encoding_info); |
303 | 0 | if (cms_stage) { |
304 | 0 | JXL_RETURN_IF_ERROR(builder.AddStage(std::move(cms_stage))); |
305 | 0 | } |
306 | 0 | } else { |
307 | 0 | JXL_RETURN_IF_ERROR(builder.AddStage(std::move(to_linear_stage))); |
308 | 0 | } |
309 | 0 | linear = true; |
310 | 0 | } |
311 | 0 | JXL_RETURN_IF_ERROR(builder.AddStage(std::move(tone_mapping_stage))); |
312 | 0 | } |
313 | | |
314 | 48.6k | if (linear) { |
315 | 13.4k | const size_t channels_src = |
316 | 13.4k | (output_encoding_info.orig_color_encoding.IsCMYK() |
317 | 13.4k | ? 4 |
318 | 13.4k | : output_encoding_info.orig_color_encoding.Channels()); |
319 | 13.4k | const size_t channels_dst = |
320 | 13.4k | output_encoding_info.color_encoding.Channels(); |
321 | 13.4k | bool mixing_color_and_grey = (channels_dst != channels_src); |
322 | 13.4k | if ((output_encoding_info.color_encoding_is_original) || |
323 | 13.4k | (!output_encoding_info.cms_set) || mixing_color_and_grey) { |
324 | | // in those cases we only need a linear stage in other cases we attempt |
325 | | // to obtain a cms stage: the cases are |
326 | | // - output_encoding_info.color_encoding_is_original: no cms stage |
327 | | // needed because it would be a no-op |
328 | | // - !output_encoding_info.cms_set: can't use the cms, so no point in |
329 | | // trying to add a cms stage |
330 | | // - mixing_color_and_grey: cms stage can't handle that |
331 | | // TODO(firsching): remove "mixing_color_and_grey" condition after |
332 | | // adding support for greyscale to cms stage. |
333 | 13.4k | JXL_RETURN_IF_ERROR( |
334 | 13.4k | builder.AddStage(GetFromLinearStage(output_encoding_info))); |
335 | 13.4k | } else { |
336 | 0 | if (!output_encoding_info.linear_color_encoding.CreateICC()) { |
337 | 0 | return JXL_FAILURE("Failed to create ICC"); |
338 | 0 | } |
339 | 0 | auto cms_stage = GetCmsStage(output_encoding_info); |
340 | 0 | if (cms_stage) { |
341 | 0 | JXL_RETURN_IF_ERROR(builder.AddStage(std::move(cms_stage))); |
342 | 0 | } |
343 | 0 | } |
344 | 13.4k | linear = false; |
345 | 35.2k | } else { |
346 | 35.2k | auto cms_stage = GetCmsStage(output_encoding_info, false); |
347 | 35.2k | if (cms_stage) { |
348 | 0 | JXL_RETURN_IF_ERROR(builder.AddStage(std::move(cms_stage))); |
349 | 0 | } |
350 | 35.2k | } |
351 | 48.6k | (void)linear; |
352 | | |
353 | 48.6k | if (main_output.callback.IsPresent() || main_output.buffer) { |
354 | 7.40k | JXL_RETURN_IF_ERROR(builder.AddStage(GetWriteToOutputStage( |
355 | 7.40k | main_output, width, height, has_alpha, unpremul_alpha, alpha_c, |
356 | 7.40k | undo_orientation, extra_output, memory_manager))); |
357 | 41.2k | } else { |
358 | 41.2k | JXL_RETURN_IF_ERROR(builder.AddStage( |
359 | 41.2k | GetWriteToImageBundleStage(decoded, output_encoding_info))); |
360 | 41.2k | } |
361 | 48.6k | } |
362 | 48.6k | JXL_ASSIGN_OR_RETURN(render_pipeline, |
363 | 48.6k | std::move(builder).Finalize(shared->frame_dim)); |
364 | 48.6k | return render_pipeline->IsInitialized(); |
365 | 48.6k | } |
366 | | |
367 | | } // namespace jxl |