Coverage Report

Created: 2026-03-31 06:56

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjxl/lib/jxl/enc_patch_dictionary.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/enc_patch_dictionary.h"
7
8
#include <jxl/cms_interface.h>
9
#include <jxl/memory_manager.h>
10
#include <jxl/types.h>
11
12
#include <algorithm>
13
#include <atomic>
14
#include <cmath>
15
#include <cstdint>
16
#include <cstdlib>
17
#include <utility>
18
#include <vector>
19
20
#include "lib/jxl/base/common.h"
21
#include "lib/jxl/base/compiler_specific.h"
22
#include "lib/jxl/base/data_parallel.h"
23
#include "lib/jxl/base/override.h"
24
#include "lib/jxl/base/printf_macros.h"
25
#include "lib/jxl/base/random.h"
26
#include "lib/jxl/base/rect.h"
27
#include "lib/jxl/base/span.h"
28
#include "lib/jxl/base/status.h"
29
#include "lib/jxl/common.h"
30
#include "lib/jxl/dec_cache.h"
31
#include "lib/jxl/dec_frame.h"
32
#include "lib/jxl/dec_patch_dictionary.h"
33
#include "lib/jxl/enc_ans.h"
34
#include "lib/jxl/enc_ans_params.h"
35
#include "lib/jxl/enc_aux_out.h"
36
#include "lib/jxl/enc_bit_writer.h"
37
#include "lib/jxl/enc_cache.h"
38
#include "lib/jxl/enc_debug_image.h"
39
#include "lib/jxl/enc_dot_dictionary.h"
40
#include "lib/jxl/enc_frame.h"
41
#include "lib/jxl/enc_params.h"
42
#include "lib/jxl/frame_header.h"
43
#include "lib/jxl/image.h"
44
#include "lib/jxl/image_bundle.h"
45
#include "lib/jxl/image_ops.h"
46
#include "lib/jxl/modular/options.h"
47
#include "lib/jxl/pack_signed.h"
48
#include "lib/jxl/patch_dictionary_internal.h"
49
50
namespace jxl {
51
52
static constexpr size_t kPatchFrameReferenceId = 3;
53
54
// static
55
Status PatchDictionaryEncoder::Encode(const PatchDictionary& pdic,
56
                                      BitWriter* writer, LayerType layer,
57
785
                                      AuxOut* aux_out) {
58
785
  JXL_ENSURE(pdic.HasAny());
59
785
  JxlMemoryManager* memory_manager = writer->memory_manager();
60
785
  std::vector<std::vector<Token>> tokens(1);
61
62
5.51M
  auto add_num = [&](int context, size_t num) {
63
5.51M
    tokens[0].emplace_back(context, static_cast<uint32_t>(num));
64
5.51M
  };
65
785
  size_t num_ref_patch = 0;
66
80.3k
  for (size_t i = 0; i < pdic.positions_.size();) {
67
79.5k
    size_t ref_pos_idx = pdic.positions_[i].ref_pos_idx;
68
1.61M
    while (i < pdic.positions_.size() &&
69
1.61M
           pdic.positions_[i].ref_pos_idx == ref_pos_idx) {
70
1.53M
      i++;
71
1.53M
    }
72
79.5k
    num_ref_patch++;
73
79.5k
  }
74
785
  add_num(kNumRefPatchContext, num_ref_patch);
75
785
  size_t blend_pos = 0;
76
785
  size_t blending_stride = pdic.blendings_stride_;
77
  // blending_stride == num_ec + 1; num_ec > 1 =>
78
785
  bool choose_alpha = (blending_stride > 1 + 1);
79
80.3k
  for (size_t i = 0; i < pdic.positions_.size();) {
80
79.5k
    size_t i_start = i;
81
79.5k
    size_t ref_pos_idx = pdic.positions_[i].ref_pos_idx;
82
79.5k
    const auto& ref_pos = pdic.ref_positions_[ref_pos_idx];
83
1.61M
    while (i < pdic.positions_.size() &&
84
1.61M
           pdic.positions_[i].ref_pos_idx == ref_pos_idx) {
85
1.53M
      i++;
86
1.53M
    }
87
79.5k
    size_t num = i - i_start;
88
79.5k
    JXL_ENSURE(num > 0);
89
79.5k
    add_num(kReferenceFrameContext, ref_pos.ref);
90
79.5k
    add_num(kPatchReferencePositionContext, ref_pos.x0);
91
79.5k
    add_num(kPatchReferencePositionContext, ref_pos.y0);
92
79.5k
    add_num(kPatchSizeContext, ref_pos.xsize - 1);
93
79.5k
    add_num(kPatchSizeContext, ref_pos.ysize - 1);
94
79.5k
    add_num(kPatchCountContext, num - 1);
95
1.61M
    for (size_t j = i_start; j < i; j++) {
96
1.53M
      const PatchPosition& pos = pdic.positions_[j];
97
1.53M
      if (j == i_start) {
98
79.5k
        add_num(kPatchPositionContext, pos.x);
99
79.5k
        add_num(kPatchPositionContext, pos.y);
100
1.45M
      } else {
101
1.45M
        add_num(kPatchOffsetContext,
102
1.45M
                PackSigned(pos.x - pdic.positions_[j - 1].x));
103
1.45M
        add_num(kPatchOffsetContext,
104
1.45M
                PackSigned(pos.y - pdic.positions_[j - 1].y));
105
1.45M
      }
106
3.50M
      for (size_t k = 0; k < blending_stride; ++k, ++blend_pos) {
107
1.96M
        const PatchBlending& info = pdic.blendings_[blend_pos];
108
1.96M
        add_num(kPatchBlendModeContext, static_cast<uint32_t>(info.mode));
109
1.96M
        if (UsesAlpha(info.mode) && choose_alpha) {
110
0
          add_num(kPatchAlphaChannelContext, info.alpha_channel);
111
0
        }
112
1.96M
        if (UsesClamp(info.mode)) {
113
0
          add_num(kPatchClampContext, TO_JXL_BOOL(info.clamp));
114
0
        }
115
1.96M
      }
116
1.53M
    }
117
79.5k
  }
118
119
785
  EntropyEncodingData codes;
120
785
  JXL_ASSIGN_OR_RETURN(
121
785
      size_t cost, BuildAndEncodeHistograms(memory_manager, HistogramParams(),
122
785
                                            kNumPatchDictionaryContexts, tokens,
123
785
                                            &codes, writer, layer, aux_out));
124
785
  (void)cost;
125
785
  JXL_RETURN_IF_ERROR(WriteTokens(tokens[0], codes, 0, writer, layer, aux_out));
126
785
  return true;
127
785
}
128
129
// static
130
Status PatchDictionaryEncoder::SubtractFrom(const PatchDictionary& pdic,
131
3.26k
                                            Image3F* opsin) {
132
  // TODO(veluca): this can likely be optimized knowing it runs on full images.
133
567k
  for (size_t y = 0; y < opsin->ysize(); y++) {
134
564k
    float* JXL_RESTRICT rows[3] = {
135
564k
        opsin->PlaneRow(0, y),
136
564k
        opsin->PlaneRow(1, y),
137
564k
        opsin->PlaneRow(2, y),
138
564k
    };
139
564k
    size_t blending_stride = pdic.blendings_stride_;
140
3.12M
    for (size_t pos_idx : pdic.GetPatchesForRow(y)) {
141
3.12M
      const size_t blending_idx = pos_idx * blending_stride;
142
3.12M
      const PatchPosition& pos = pdic.positions_[pos_idx];
143
3.12M
      const PatchReferencePosition& ref_pos =
144
3.12M
          pdic.ref_positions_[pos.ref_pos_idx];
145
3.12M
      const PatchBlendMode mode = pdic.blendings_[blending_idx].mode;
146
3.12M
      size_t by = pos.y;
147
3.12M
      size_t bx = pos.x;
148
3.12M
      size_t xsize = ref_pos.xsize;
149
3.12M
      JXL_ENSURE(y >= by);
150
3.12M
      JXL_ENSURE(y < by + ref_pos.ysize);
151
3.12M
      size_t iy = y - by;
152
3.12M
      size_t ref = ref_pos.ref;
153
3.12M
      const float* JXL_RESTRICT ref_rows[3] = {
154
3.12M
          pdic.reference_frames_->at(ref).frame->color()->ConstPlaneRow(
155
3.12M
              0, ref_pos.y0 + iy) +
156
3.12M
              ref_pos.x0,
157
3.12M
          pdic.reference_frames_->at(ref).frame->color()->ConstPlaneRow(
158
3.12M
              1, ref_pos.y0 + iy) +
159
3.12M
              ref_pos.x0,
160
3.12M
          pdic.reference_frames_->at(ref).frame->color()->ConstPlaneRow(
161
3.12M
              2, ref_pos.y0 + iy) +
162
3.12M
              ref_pos.x0,
163
3.12M
      };
164
17.8M
      for (size_t ix = 0; ix < xsize; ix++) {
165
58.8M
        for (size_t c = 0; c < 3; c++) {
166
44.1M
          if (mode == PatchBlendMode::kAdd) {
167
44.1M
            rows[c][bx + ix] -= ref_rows[c][ix];
168
44.1M
          } else if (mode == PatchBlendMode::kReplace) {
169
0
            rows[c][bx + ix] = 0;
170
0
          } else if (mode == PatchBlendMode::kNone) {
171
            // Nothing to do.
172
0
          } else {
173
0
            return JXL_UNREACHABLE("blending mode %u not yet implemented",
174
0
                                   static_cast<uint32_t>(mode));
175
0
          }
176
44.1M
        }
177
14.7M
      }
178
3.12M
    }
179
564k
  }
180
3.26k
  return true;
181
3.26k
}
182
183
namespace {
184
185
struct PatchColorspaceInfo {
186
  float kChannelDequant[3];
187
  float kChannelWeights[3];
188
189
2.57k
  explicit PatchColorspaceInfo(bool is_xyb) {
190
2.57k
    if (is_xyb) {
191
2.57k
      kChannelDequant[0] = 0.01615;
192
2.57k
      kChannelDequant[1] = 0.08875;
193
2.57k
      kChannelDequant[2] = 0.1922;
194
2.57k
      kChannelWeights[0] = 30.0;
195
2.57k
      kChannelWeights[1] = 3.0;
196
2.57k
      kChannelWeights[2] = 1.0;
197
2.57k
    } else {
198
0
      kChannelDequant[0] = 20.0f / 255;
199
0
      kChannelDequant[1] = 22.0f / 255;
200
0
      kChannelDequant[2] = 20.0f / 255;
201
0
      kChannelWeights[0] = 0.017 * 255;
202
0
      kChannelWeights[1] = 0.02 * 255;
203
0
      kChannelWeights[2] = 0.017 * 255;
204
0
    }
205
2.57k
  }
206
207
70.7M
  float ScaleForQuantization(float val, size_t c) {
208
70.7M
    return val / kChannelDequant[c];
209
70.7M
  }
210
211
70.7M
  int Quantize(float val, size_t c) {
212
70.7M
    float scaled = ScaleForQuantization(val, c);
213
    // Clamping allows values outside of target range (int8_t); caller should
214
    // deal with out-of-range values.
215
70.7M
    scaled = jxl::Clamp1(scaled, -32768.0f, 32767.0f);
216
70.7M
    return std::trunc(scaled);
217
70.7M
  }
218
219
248M
  bool is_similar_v(const Color& v1, const Color& v2, float threshold) {
220
248M
    float distance = 0;
221
992M
    for (size_t c = 0; c < 3; c++) {
222
744M
      distance += std::abs(v1[c] - v2[c]) * kChannelWeights[c];
223
744M
    }
224
248M
    return distance <= threshold;
225
248M
  }
226
};
227
228
using XY = std::pair<int32_t, int32_t>;
229
constexpr const size_t kPatchSide = 4;
230
231
StatusOr<std::vector<PatchInfo>> FindTextLikePatches(
232
    const CompressParams& cparams, const Image3F& opsin,
233
    const PassesEncoderState* JXL_RESTRICT state, ThreadPool* pool,
234
3.26k
    AuxOut* aux_out, bool is_xyb) {
235
3.26k
  std::vector<PatchInfo> info;
236
3.26k
  if (state->cparams.patches == Override::kOff) return info;
237
2.57k
  const auto& frame_dim = state->shared.frame_dim;
238
2.57k
  JxlMemoryManager* memory_manager = opsin.memory_manager();
239
240
2.57k
  PatchColorspaceInfo pci(is_xyb);
241
2.57k
  float kSimilarThreshold = 0.8f;
242
243
2.57k
  auto is_similar_impl = [&pci](const XY& p1, const XY& p2,
244
2.57k
                                const float* JXL_RESTRICT rows[3],
245
165M
                                size_t stride, float threshold) {
246
165M
    size_t offset1 = p1.second * stride + p1.first;
247
165M
    Color v1{rows[0][offset1], rows[1][offset1], rows[2][offset1]};
248
165M
    size_t offset2 = p2.second * stride + p2.first;
249
165M
    Color v2{rows[0][offset2], rows[1][offset2], rows[2][offset2]};
250
165M
    return pci.is_similar_v(v1, v2, threshold);
251
165M
  };
252
253
2.57k
  std::atomic<uint32_t> screenshot_area_seeds{0};
254
2.57k
  const size_t opsin_stride = opsin.PixelsPerRow();
255
2.57k
  const float* JXL_RESTRICT opsin_rows[3] = {opsin.ConstPlaneRow(0, 0),
256
2.57k
                                             opsin.ConstPlaneRow(1, 0),
257
2.57k
                                             opsin.ConstPlaneRow(2, 0)};
258
9.03M
  const auto pick = [&opsin_rows, opsin_stride](const XY& p) -> Color {
259
9.03M
    size_t offset = p.second * opsin_stride + p.first;
260
9.03M
    return {opsin_rows[0][offset], opsin_rows[1][offset],
261
9.03M
            opsin_rows[2][offset]};
262
9.03M
  };
263
2.57k
  const auto is_same_color = [&opsin_rows, opsin_stride](
264
105M
                                 const XY& p, const Color& c) -> size_t {
265
105M
    const size_t offset = p.second * opsin_stride + p.first;
266
397M
    for (size_t i = 0; i < c.size(); ++i) {
267
301M
      if (std::fabs(c[i] - opsin_rows[i][offset]) > 1e-4) {
268
8.49M
        return 0;
269
8.49M
      }
270
301M
    }
271
96.5M
    return 1;
272
105M
  };
273
274
113M
  auto is_similar = [&](const XY& p1, const XY& p2) {
275
113M
    return is_similar_impl(p1, p2, opsin_rows, opsin_stride, kSimilarThreshold);
276
113M
  };
277
278
  // Look for kPatchSide size squares, naturally aligned, that all have the same
279
  // pixel values.
280
2.57k
  JXL_ASSIGN_OR_RETURN(
281
2.57k
      ImageB is_screenshot_like,
282
2.57k
      ImageB::Create(memory_manager, DivCeil(frame_dim.xsize, kPatchSide),
283
2.57k
                     DivCeil(frame_dim.ysize, kPatchSide)));
284
2.57k
  ZeroFillImage(&is_screenshot_like);
285
2.57k
  const size_t pw = frame_dim.xsize / kPatchSide;
286
2.57k
  const size_t ph = frame_dim.ysize / kPatchSide;
287
288
9.03M
  const auto flat_patch = [&](const XY& o, const Color& base) -> bool {
289
24.5M
    for (size_t iy = 0; iy < kPatchSide; iy++) {
290
90.4M
      for (size_t ix = 0; ix < kPatchSide; ix++) {
291
74.9M
        XY p = {static_cast<int32_t>(o.first + ix),
292
74.9M
                static_cast<int32_t>(o.second + iy)};
293
74.9M
        if (!is_same_color(p, base)) {
294
5.69M
          return false;
295
5.69M
        }
296
74.9M
      }
297
21.1M
    }
298
3.34M
    return true;
299
9.03M
  };
300
301
  // TODO(eustas): should do this in 2 phases:
302
  //   1) if patches are not enabled do sampling run for has_screenshot_areas
303
  //   2) if patches forced or not disables + has_screenshot_areas do
304
  //      SIMDified full scan for is_screenshot_like
305
2.57k
  const auto process_row = [&](const uint32_t py,
306
114k
                               size_t /* thread */) -> Status {
307
114k
    uint32_t found = 0;
308
9.15M
    for (size_t px = 1; px <= pw - 2; px++) {
309
9.03M
      XY o = {static_cast<uint32_t>(px * kPatchSide),
310
9.03M
              static_cast<uint32_t>(py * kPatchSide)};
311
9.03M
      Color base = pick(o);
312
9.03M
      if (!flat_patch(o, base)) continue;
313
3.34M
      size_t num_same = 0;
314
13.3M
      for (size_t y = (py - 1) * kPatchSide; y <= (py + 1) * kPatchSide;
315
10.0M
           y += kPatchSide) {
316
40.1M
        for (size_t x = (px - 1) * kPatchSide; x <= (px + 1) * kPatchSide;
317
30.0M
             x += kPatchSide) {
318
30.0M
          XY p = {static_cast<uint32_t>(x), static_cast<uint32_t>(y)};
319
30.0M
          num_same += is_same_color(p, base);
320
30.0M
        }
321
10.0M
      }
322
      // Too few equal pixels nearby.
323
3.34M
      if (num_same < 8) continue;
324
2.63M
      is_screenshot_like.Row(py)[px] = 1;
325
2.63M
      found++;
326
2.63M
    }
327
114k
    screenshot_area_seeds.fetch_add(found);
328
114k
    return true;
329
114k
  };
330
2.57k
  bool can_have_seeds = ((pw >= 3) && (ph >= 3));
331
2.57k
  if (can_have_seeds) {
332
1.90k
    JXL_RETURN_IF_ERROR(RunOnPool(pool, 1, ph - 2, ThreadPool::NoInit,
333
1.90k
                                  process_row, "IsScreenshotLike"));
334
1.90k
  }
335
336
  // TODO(veluca): also parallelize the rest of this function.
337
2.57k
  if (WantDebugOutput(cparams)) {
338
0
    JXL_RETURN_IF_ERROR(
339
0
        DumpPlaneNormalized(cparams, "screenshot_like", is_screenshot_like));
340
0
  }
341
342
2.57k
  constexpr int kSearchRadius = 1;
343
344
2.57k
  size_t num_seeds = screenshot_area_seeds.load();
345
2.57k
  if (!ApplyOverride(state->cparams.patches, (num_seeds > 0))) {
346
966
    return info;
347
966
  }
348
349
  // Search for "similar enough" pixels near the screenshot-like areas.
350
3.21k
  JXL_ASSIGN_OR_RETURN(
351
3.21k
      ImageB is_background,
352
3.21k
      ImageB::Create(memory_manager, frame_dim.xsize, frame_dim.ysize));
353
3.21k
  ZeroFillImage(&is_background);
354
3.21k
  JXL_ASSIGN_OR_RETURN(
355
1.60k
      Image3F background,
356
1.60k
      Image3F::Create(memory_manager, frame_dim.xsize, frame_dim.ysize));
357
1.60k
  ZeroFillImage(&background);
358
1.60k
  constexpr size_t kDistanceLimit = 50;
359
1.60k
  float* JXL_RESTRICT background_rows[3] = {
360
1.60k
      background.PlaneRow(0, 0),
361
1.60k
      background.PlaneRow(1, 0),
362
1.60k
      background.PlaneRow(2, 0),
363
1.60k
  };
364
1.60k
  const size_t background_stride = background.PixelsPerRow();
365
1.60k
  uint8_t* JXL_RESTRICT is_background_row = is_background.Row(0);
366
1.60k
  const size_t is_background_stride = is_background.PixelsPerRow();
367
961M
  const auto is_bg = [&](const XY& p) -> uint8_t& {
368
961M
    return is_background_row[p.second * is_background_stride + p.first];
369
961M
  };
370
1.60k
  std::vector<std::pair<XY, XY>> queue;
371
1.60k
  queue.reserve(2 * num_seeds * kPatchSide * kPatchSide);
372
1.60k
  size_t queue_front = 0;
373
  // TODO(eustas): coalesce neighbours, leave only border.
374
1.60k
  if (can_have_seeds) {
375
103k
    for (size_t py = 1; py < ph - 1; py++) {
376
101k
      uint8_t* JXL_RESTRICT screenshot_row = is_screenshot_like.Row(py);
377
8.15M
      for (size_t px = 1; px < pw - 1; px++) {
378
8.05M
        if (!screenshot_row[px]) continue;
379
13.1M
        for (size_t y = py * kPatchSide; y < (py + 1) * kPatchSide; ++y) {
380
52.7M
          for (size_t x = px * kPatchSide; x < (px + 1) * kPatchSide; ++x) {
381
42.1M
            XY p = {static_cast<uint32_t>(x), static_cast<uint32_t>(y)};
382
42.1M
            queue.emplace_back(p, p);
383
42.1M
            is_bg(p) = 1;
384
42.1M
          }
385
10.5M
        }
386
2.63M
      }
387
101k
    }
388
1.60k
  }
389
102M
  while (queue_front < queue.size()) {
390
102M
    XY cur = queue[queue_front].first;
391
102M
    XY src = queue[queue_front].second;
392
102M
    queue_front++;
393
102M
    Color src_color;
394
410M
    for (size_t c = 0; c < 3; c++) {
395
307M
      float clr = opsin_rows[c][src.second * opsin_stride + src.first];
396
307M
      src_color[c] = clr;
397
307M
      background_rows[c][cur.second * background_stride + cur.first] = clr;
398
307M
    }
399
410M
    for (int dx = -kSearchRadius; dx <= kSearchRadius; dx++) {
400
1.23G
      for (int dy = -kSearchRadius; dy <= kSearchRadius; dy++) {
401
922M
        XY next{cur.first + dx, cur.second + dy};
402
922M
        if (next.first < 0 || next.second < 0 ||
403
921M
            static_cast<uint32_t>(next.first) >= frame_dim.xsize ||
404
920M
            static_cast<uint32_t>(next.second) >= frame_dim.ysize) {
405
3.23M
          continue;
406
3.23M
        }
407
919M
        uint8_t& bg = is_bg(next);
408
919M
        if (bg) continue;
409
115M
        if (static_cast<uint32_t>(
410
115M
                std::abs(next.first - static_cast<int>(src.first)) +
411
115M
                std::abs(next.second - static_cast<int>(src.second))) >
412
115M
            kDistanceLimit) {
413
1.51M
          continue;
414
1.51M
        }
415
113M
        if (is_similar(src, next)) {
416
60.3M
          queue.emplace_back(next, src);
417
60.3M
          bg = 1;
418
60.3M
        }
419
113M
      }
420
307M
    }
421
102M
  }
422
1.60k
  queue.clear();
423
424
1.60k
  ImageF ccs;
425
1.60k
  Rng rng(0);
426
1.60k
  bool paint_ccs = false;
427
1.60k
  if (WantDebugOutput(cparams)) {
428
0
    JXL_RETURN_IF_ERROR(
429
0
        DumpPlaneNormalized(cparams, "is_background", is_background));
430
0
    if (is_xyb) {
431
0
      JXL_RETURN_IF_ERROR(DumpXybImage(cparams, "background", background));
432
0
    } else {
433
0
      JXL_RETURN_IF_ERROR(DumpImage(cparams, "background", background));
434
0
    }
435
0
    JXL_ASSIGN_OR_RETURN(
436
0
        ccs, ImageF::Create(memory_manager, frame_dim.xsize, frame_dim.ysize));
437
0
    ZeroFillImage(&ccs);
438
0
    paint_ccs = true;
439
0
  }
440
441
1.60k
  constexpr float kVerySimilarThreshold = 0.03f;
442
1.60k
  constexpr float kHasSimilarThreshold = 0.03f;
443
444
1.60k
  const float* JXL_RESTRICT const_background_rows[3] = {
445
1.60k
      background_rows[0], background_rows[1], background_rows[2]};
446
51.2M
  auto is_similar_b = [&](std::pair<int, int> p1, std::pair<int, int> p2) {
447
51.2M
    return is_similar_impl(p1, p2, const_background_rows, background_stride,
448
51.2M
                           kVerySimilarThreshold);
449
51.2M
  };
450
451
1.60k
  constexpr int kMinPeak = 2;
452
1.60k
  constexpr int kHasSimilarRadius = 2;
453
454
  // Find small CC outside the "similar enough" areas, compute bounding boxes,
455
  // and run heuristics to exclude some patches.
456
1.60k
  JXL_ASSIGN_OR_RETURN(
457
1.60k
      ImageB visited,
458
1.60k
      ImageB::Create(memory_manager, frame_dim.xsize, frame_dim.ysize));
459
1.60k
  ZeroFillImage(&visited);
460
1.60k
  uint8_t* JXL_RESTRICT visited_row = visited.Row(0);
461
1.60k
  const size_t visited_stride = visited.PixelsPerRow();
462
1.60k
  std::vector<std::pair<uint32_t, uint32_t>> cc;
463
1.60k
  std::vector<std::pair<uint32_t, uint32_t>> stack;
464
421k
  for (size_t y = 0; y < frame_dim.ysize; y++) {
465
136M
    for (size_t x = 0; x < frame_dim.xsize; x++) {
466
136M
      if (is_background_row[y * is_background_stride + x]) continue;
467
33.5M
      cc.clear();
468
33.5M
      stack.clear();
469
33.5M
      stack.emplace_back(static_cast<uint32_t>(x), static_cast<uint32_t>(y));
470
33.5M
      size_t min_x = x;
471
33.5M
      size_t max_x = x;
472
33.5M
      size_t min_y = y;
473
33.5M
      size_t max_y = y;
474
33.5M
      std::pair<uint32_t, uint32_t> reference;
475
33.5M
      bool found_border = false;
476
33.5M
      bool all_similar = true;
477
280M
      while (!stack.empty()) {
478
247M
        std::pair<uint32_t, uint32_t> cur = stack.back();
479
247M
        stack.pop_back();
480
247M
        if (visited_row[cur.second * visited_stride + cur.first]) continue;
481
33.5M
        visited_row[cur.second * visited_stride + cur.first] = 1;
482
33.5M
        if (cur.first < min_x) min_x = cur.first;
483
33.5M
        if (cur.first > max_x) max_x = cur.first;
484
33.5M
        if (cur.second < min_y) min_y = cur.second;
485
33.5M
        if (cur.second > max_y) max_y = cur.second;
486
33.5M
        if (paint_ccs) {
487
0
          cc.push_back(cur);
488
0
        }
489
134M
        for (int dx = -kSearchRadius; dx <= kSearchRadius; dx++) {
490
402M
          for (int dy = -kSearchRadius; dy <= kSearchRadius; dy++) {
491
301M
            if (dx == 0 && dy == 0) continue;
492
268M
            int next_first = static_cast<int32_t>(cur.first) + dx;
493
268M
            int next_second = static_cast<int32_t>(cur.second) + dy;
494
268M
            if (next_first < 0 || next_second < 0 ||
495
267M
                static_cast<uint32_t>(next_first) >= frame_dim.xsize ||
496
266M
                static_cast<uint32_t>(next_second) >= frame_dim.ysize) {
497
1.53M
              continue;
498
1.53M
            }
499
266M
            std::pair<uint32_t, uint32_t> next{next_first, next_second};
500
266M
            if (!is_background_row[next.second * is_background_stride +
501
266M
                                   next.first]) {
502
213M
              stack.push_back(next);
503
213M
            } else {
504
52.9M
              if (!found_border) {
505
1.76M
                reference = next;
506
1.76M
                found_border = true;
507
51.2M
              } else {
508
51.2M
                if (!is_similar_b(next, reference)) all_similar = false;
509
51.2M
              }
510
52.9M
            }
511
266M
          }
512
100M
        }
513
33.5M
      }
514
33.5M
      if (!found_border || !all_similar || max_x - min_x >= kMaxPatchSize ||
515
31.7M
          max_y - min_y >= kMaxPatchSize) {
516
31.7M
        continue;
517
31.7M
      }
518
1.71M
      size_t bpos = background_stride * reference.second + reference.first;
519
1.71M
      Color ref = {background_rows[0][bpos], background_rows[1][bpos],
520
1.71M
                   background_rows[2][bpos]};
521
1.71M
      bool has_similar = false;
522
1.71M
      for (size_t iy = std::max<int>(
523
1.71M
               static_cast<int32_t>(min_y) - kHasSimilarRadius, 0);
524
12.6M
           iy < std::min(max_y + kHasSimilarRadius + 1, frame_dim.ysize);
525
10.9M
           iy++) {
526
10.9M
        for (size_t ix = std::max<int>(
527
10.9M
                 static_cast<int32_t>(min_x) - kHasSimilarRadius, 0);
528
93.8M
             ix < std::min(max_x + kHasSimilarRadius + 1, frame_dim.xsize);
529
82.9M
             ix++) {
530
82.9M
          size_t opos = opsin_stride * iy + ix;
531
82.9M
          Color px = {opsin_rows[0][opos], opsin_rows[1][opos],
532
82.9M
                      opsin_rows[2][opos]};
533
82.9M
          if (pci.is_similar_v(ref, px, kHasSimilarThreshold)) {
534
60.6M
            has_similar = true;
535
60.6M
          }
536
82.9M
        }
537
10.9M
      }
538
1.71M
      if (!has_similar) continue;
539
1.71M
      info.emplace_back();
540
1.71M
      info.back().second.emplace_back(static_cast<uint32_t>(min_x),
541
1.71M
                                      static_cast<uint32_t>(min_y));
542
1.71M
      QuantizedPatch& patch = info.back().first;
543
1.71M
      patch.xsize = max_x - min_x + 1;
544
1.71M
      patch.ysize = max_y - min_y + 1;
545
1.71M
      bool too_big = false;
546
1.71M
      bool too_small = true;
547
5.14M
      for (size_t c : {1, 0, 2}) {
548
17.2M
        for (size_t iy = min_y; iy <= max_y; iy++) {
549
82.8M
          for (size_t ix = min_x; ix <= max_x; ix++) {
550
70.7M
            size_t offset = (iy - min_y) * patch.xsize + ix - min_x;
551
70.7M
            float fval = opsin_rows[c][iy * opsin_stride + ix] - ref[c];
552
70.7M
            patch.fpixels[c][offset] = fval;
553
70.7M
            int val = pci.Quantize(patch.fpixels[c][offset], c);
554
70.7M
            int8_t qval = static_cast<int8_t>(val);
555
70.7M
            patch.pixels[c][offset] = qval;
556
70.7M
            too_big |= (val != static_cast<int>(qval));
557
70.7M
            too_small &= (val < kMinPeak) && (val > -kMinPeak);
558
70.7M
          }
559
12.1M
        }
560
5.14M
      }
561
1.71M
      if (too_small || too_big) {
562
20.9k
        info.pop_back();
563
20.9k
        continue;
564
20.9k
      }
565
1.69M
      if (paint_ccs) {
566
0
        float cc_color = rng.UniformF(0.5, 1.0);
567
0
        for (std::pair<uint32_t, uint32_t> p : cc) {
568
0
          ccs.Row(p.second)[p.first] = cc_color;
569
0
        }
570
0
      }
571
1.69M
    }
572
420k
  }
573
574
1.60k
  if (paint_ccs) {
575
0
    JXL_ENSURE(WantDebugOutput(cparams));
576
0
    JXL_RETURN_IF_ERROR(DumpPlaneNormalized(cparams, "ccs", ccs));
577
0
  }
578
1.60k
  if (info.empty()) {
579
534
    return info;
580
534
  }
581
582
  // Remove duplicates.
583
1.07k
  constexpr size_t kMinPatchOccurrences = 2;
584
1.07k
  std::sort(info.begin(), info.end());
585
1.07k
  size_t unique = 0;
586
1.69M
  for (size_t i = 1; i < info.size(); i++) {
587
1.69M
    if (info[i].first == info[unique].first) {
588
1.47M
      info[unique].second.insert(info[unique].second.end(),
589
1.47M
                                 info[i].second.begin(), info[i].second.end());
590
1.47M
    } else {
591
212k
      if (info[unique].second.size() >= kMinPatchOccurrences) {
592
80.2k
        unique++;
593
80.2k
      }
594
212k
      info[unique] = info[i];
595
212k
    }
596
1.69M
  }
597
1.07k
  if (info[unique].second.size() >= kMinPatchOccurrences) {
598
310
    unique++;
599
310
  }
600
1.07k
  info.resize(unique);
601
602
1.07k
  size_t max_patch_size = 0;
603
604
80.5k
  for (const auto& patch : info) {
605
80.5k
    size_t pixels = patch.first.xsize * patch.first.ysize;
606
80.5k
    if (pixels > max_patch_size) max_patch_size = pixels;
607
80.5k
  }
608
609
  // don't use patches if all patches are smaller than this
610
1.07k
  constexpr size_t kMinMaxPatchSize = 20;
611
1.07k
  if (max_patch_size < kMinMaxPatchSize) {
612
287
    info.clear();
613
287
  }
614
615
1.07k
  return info;
616
1.60k
}
617
618
}  // namespace
619
620
Status FindBestPatchDictionary(const Image3F& opsin,
621
                               PassesEncoderState* JXL_RESTRICT state,
622
                               const JxlCmsInterface& cms, ThreadPool* pool,
623
3.26k
                               AuxOut* aux_out, bool is_xyb) {
624
3.26k
  JXL_ASSIGN_OR_RETURN(
625
3.26k
      std::vector<PatchInfo> info,
626
3.26k
      FindTextLikePatches(state->cparams, opsin, state, pool, aux_out, is_xyb));
627
3.26k
  JxlMemoryManager* memory_manager = opsin.memory_manager();
628
629
  // TODO(veluca): this doesn't work if both dots and patches are enabled.
630
  // For now, since dots and patches are not likely to occur in the same kind of
631
  // images, disable dots if some patches were found.
632
3.26k
  if (info.empty() &&
633
2.47k
      ApplyOverride(
634
2.47k
          state->cparams.dots,
635
2.47k
          state->cparams.speed_tier <= SpeedTier::kSquirrel &&
636
2.47k
              state->cparams.butteraugli_distance >= kMinButteraugliForDots &&
637
0
              !state->cparams.disable_perceptual_optimizations)) {
638
0
    Rect rect(0, 0, state->shared.frame_dim.xsize,
639
0
              state->shared.frame_dim.ysize);
640
0
    JXL_ASSIGN_OR_RETURN(info,
641
0
                         FindDotDictionary(state->cparams, opsin, rect,
642
0
                                           state->shared.cmap.base(), pool));
643
0
  }
644
645
3.26k
  if (info.empty()) return true;
646
647
785
  std::sort(
648
450k
      info.begin(), info.end(), [&](const PatchInfo& a, const PatchInfo& b) {
649
450k
        return a.first.xsize * a.first.ysize > b.first.xsize * b.first.ysize;
650
450k
      });
651
652
785
  size_t max_x_size = 0;
653
785
  size_t max_y_size = 0;
654
785
  size_t total_pixels = 0;
655
656
79.5k
  for (const auto& patch : info) {
657
79.5k
    size_t pixels = patch.first.xsize * patch.first.ysize;
658
79.5k
    if (max_x_size < patch.first.xsize) max_x_size = patch.first.xsize;
659
79.5k
    if (max_y_size < patch.first.ysize) max_y_size = patch.first.ysize;
660
79.5k
    total_pixels += pixels;
661
79.5k
  }
662
663
  // Bin-packing & conversion of patches.
664
785
  constexpr float kBinPackingSlackness = 1.05f;
665
785
  size_t ref_xsize = std::max<float>(max_x_size, std::sqrt(total_pixels));
666
785
  size_t ref_ysize = std::max<float>(max_y_size, std::sqrt(total_pixels));
667
785
  std::vector<std::pair<size_t, size_t>> ref_positions(info.size());
668
  // TODO(veluca): allow partial overlaps of patches that have the same pixels.
669
785
  size_t max_y = 0;
670
1.14k
  do {
671
1.14k
    max_y = 0;
672
    // Increase packed image size.
673
1.14k
    ref_xsize = ref_xsize * kBinPackingSlackness + 1;
674
1.14k
    ref_ysize = ref_ysize * kBinPackingSlackness + 1;
675
676
1.14k
    JXL_ASSIGN_OR_RETURN(ImageB occupied,
677
1.14k
                         ImageB::Create(memory_manager, ref_xsize, ref_ysize));
678
1.14k
    ZeroFillImage(&occupied);
679
1.14k
    uint8_t* JXL_RESTRICT occupied_rows = occupied.Row(0);
680
1.14k
    size_t occupied_stride = occupied.PixelsPerRow();
681
682
1.14k
    bool success = true;
683
    // For every patch...
684
81.8k
    for (size_t patch = 0; patch < info.size(); patch++) {
685
81.1k
      size_t x0 = 0;
686
81.1k
      size_t y0 = 0;
687
81.1k
      size_t xsize = info[patch].first.xsize;
688
81.1k
      size_t ysize = info[patch].first.ysize;
689
81.1k
      bool found = false;
690
      // For every possible start position ...
691
4.76M
      for (; y0 + ysize <= ref_ysize; y0++) {
692
4.76M
        x0 = 0;
693
481M
        for (; x0 + xsize <= ref_xsize; x0++) {
694
476M
          bool has_occupied_pixel = false;
695
476M
          size_t x = x0;
696
          // Check if it is possible to place the patch in this position in the
697
          // reference frame.
698
2.56G
          for (size_t y = y0; y < y0 + ysize; y++) {
699
2.08G
            x = x0;
700
2.36G
            for (; x < x0 + xsize; x++) {
701
2.34G
              if (occupied_rows[y * occupied_stride + x]) {
702
2.06G
                has_occupied_pixel = true;
703
2.06G
                break;
704
2.06G
              }
705
2.34G
            }
706
2.08G
          }  // end of positioning check
707
476M
          if (!has_occupied_pixel) {
708
80.7k
            found = true;
709
80.7k
            break;
710
80.7k
          }
711
476M
          x0 = x;  // Jump to next pixel after the occupied one.
712
476M
        }
713
4.76M
        if (found) break;
714
4.76M
      }  // end of start position checking
715
716
      // We didn't find a possible position: repeat from the beginning with a
717
      // larger reference frame size.
718
81.1k
      if (!found) {
719
362
        success = false;
720
362
        break;
721
362
      }
722
723
      // We found a position: mark the corresponding positions in the reference
724
      // image as used.
725
80.7k
      ref_positions[patch] = {x0, y0};
726
487k
      for (size_t y = y0; y < y0 + ysize; y++) {
727
4.06M
        for (size_t x = x0; x < x0 + xsize; x++) {
728
3.66M
          occupied_rows[y * occupied_stride + x] = JXL_TRUE;
729
3.66M
        }
730
406k
      }
731
80.7k
      max_y = std::max(max_y, y0 + ysize);
732
80.7k
    }
733
734
1.14k
    if (success) break;
735
1.14k
  } while (true);
736
737
785
  JXL_ENSURE(ref_ysize >= max_y);
738
739
785
  ref_ysize = max_y;
740
741
785
  JXL_ASSIGN_OR_RETURN(Image3F reference_frame,
742
785
                       Image3F::Create(memory_manager, ref_xsize, ref_ysize));
743
  // TODO(veluca): figure out a better way to fill the image.
744
785
  ZeroFillImage(&reference_frame);
745
785
  std::vector<PatchPosition> positions;
746
785
  std::vector<PatchReferencePosition> pref_positions;
747
785
  std::vector<PatchBlending> blendings;
748
785
  float* JXL_RESTRICT ref_rows[3] = {
749
785
      reference_frame.PlaneRow(0, 0),
750
785
      reference_frame.PlaneRow(1, 0),
751
785
      reference_frame.PlaneRow(2, 0),
752
785
  };
753
785
  size_t ref_stride = reference_frame.PixelsPerRow();
754
785
  size_t num_ec = state->shared.metadata->m.num_extra_channels;
755
756
80.3k
  for (size_t i = 0; i < info.size(); i++) {
757
79.5k
    PatchReferencePosition ref_pos;
758
79.5k
    ref_pos.xsize = info[i].first.xsize;
759
79.5k
    ref_pos.ysize = info[i].first.ysize;
760
79.5k
    ref_pos.x0 = ref_positions[i].first;
761
79.5k
    ref_pos.y0 = ref_positions[i].second;
762
79.5k
    ref_pos.ref = kPatchFrameReferenceId;
763
470k
    for (size_t y = 0; y < ref_pos.ysize; y++) {
764
3.80M
      for (size_t x = 0; x < ref_pos.xsize; x++) {
765
13.6M
        for (size_t c = 0; c < 3; c++) {
766
10.2M
          ref_rows[c][(y + ref_pos.y0) * ref_stride + x + ref_pos.x0] =
767
10.2M
              info[i].first.fpixels[c][y * ref_pos.xsize + x];
768
10.2M
        }
769
3.41M
      }
770
391k
    }
771
1.53M
    for (const auto& pos : info[i].second) {
772
1.53M
      JXL_DEBUG_V(4, "Patch %" PRIuS "x%" PRIuS " at position %u,%u",
773
1.53M
                  ref_pos.xsize, ref_pos.ysize, pos.first, pos.second);
774
1.53M
      positions.emplace_back(
775
1.53M
          PatchPosition{pos.first, pos.second, pref_positions.size()});
776
      // Add blending for color channels, ignore other channels.
777
1.53M
      blendings.push_back({PatchBlendMode::kAdd, 0, false});
778
1.96M
      for (size_t j = 0; j < num_ec; ++j) {
779
432k
        blendings.push_back({PatchBlendMode::kNone, 0, false});
780
432k
      }
781
1.53M
    }
782
79.5k
    pref_positions.emplace_back(ref_pos);
783
79.5k
  }
784
785
785
  CompressParams cparams = state->cparams;
786
  // Recursive application of patches could create very weird issues.
787
785
  cparams.patches = Override::kOff;
788
789
785
  if (WantDebugOutput(cparams)) {
790
0
    if (is_xyb) {
791
0
      JXL_RETURN_IF_ERROR(
792
0
          DumpXybImage(cparams, "patch_reference", reference_frame));
793
0
    } else {
794
0
      JXL_RETURN_IF_ERROR(
795
0
          DumpImage(cparams, "patch_reference", reference_frame));
796
0
    }
797
0
  }
798
799
785
  JXL_RETURN_IF_ERROR(RoundtripPatchFrame(&reference_frame, state,
800
785
                                          kPatchFrameReferenceId, cparams, cms,
801
785
                                          pool, aux_out, /*subtract=*/true));
802
803
  // TODO(veluca): this assumes that applying patches is commutative, which is
804
  // not true for all blending modes. This code only produces kAdd patches, so
805
  // this works out.
806
785
  PatchDictionaryEncoder::SetPositions(
807
785
      &state->shared.image_features.patches, std::move(positions),
808
785
      std::move(pref_positions), std::move(blendings), num_ec + 1);
809
785
  return true;
810
785
}
811
812
Status RoundtripPatchFrame(Image3F* reference_frame,
813
                           PassesEncoderState* JXL_RESTRICT state, int idx,
814
                           CompressParams& cparams, const JxlCmsInterface& cms,
815
785
                           ThreadPool* pool, AuxOut* aux_out, bool subtract) {
816
785
  JxlMemoryManager* memory_manager = state->memory_manager();
817
785
  FrameInfo patch_frame_info;
818
785
  cparams.resampling = 1;
819
785
  cparams.ec_resampling = 1;
820
785
  cparams.dots = Override::kOff;
821
785
  cparams.noise = Override::kOff;
822
785
  cparams.modular_mode = true;
823
785
  cparams.responsive = 0;
824
785
  cparams.progressive_dc = 0;
825
785
  cparams.progressive_mode = Override::kOff;
826
785
  cparams.qprogressive_mode = Override::kOff;
827
  // Use gradient predictor and not Predictor::Best.
828
785
  cparams.options.predictor = Predictor::Gradient;
829
785
  patch_frame_info.save_as_reference = idx;  // always saved.
830
785
  patch_frame_info.frame_type = FrameType::kReferenceOnly;
831
785
  patch_frame_info.save_before_color_transform = true;
832
785
  ImageBundle ib(memory_manager, &state->shared.metadata->m);
833
  // TODO(veluca): metadata.color_encoding is a lie: ib is in XYB, but there is
834
  // no simple way to express that yet.
835
785
  patch_frame_info.ib_needs_color_transform = false;
836
785
  JXL_RETURN_IF_ERROR(ib.SetFromImage(
837
785
      std::move(*reference_frame), state->shared.metadata->m.color_encoding));
838
785
  if (!ib.metadata()->extra_channel_info.empty()) {
839
    // Add placeholder extra channels to the patch image: patch encoding does
840
    // not yet support extra channels, but the codec expects that the amount of
841
    // extra channels in frames matches that in the metadata of the codestream.
842
342
    std::vector<ImageF> extra_channels;
843
342
    extra_channels.reserve(ib.metadata()->extra_channel_info.size());
844
684
    for (size_t i = 0; i < ib.metadata()->extra_channel_info.size(); i++) {
845
342
      JXL_ASSIGN_OR_RETURN(
846
342
          ImageF ch, ImageF::Create(memory_manager, ib.xsize(), ib.ysize()));
847
342
      extra_channels.emplace_back(std::move(ch));
848
      // Must initialize the image with data to not affect blending with
849
      // uninitialized memory.
850
      // TODO(lode): patches must copy and use the real extra channels instead.
851
342
      ZeroFillImage(&extra_channels.back());
852
342
    }
853
342
    JXL_RETURN_IF_ERROR(ib.SetExtraChannels(std::move(extra_channels)));
854
342
  }
855
785
  auto special_frame = jxl::make_unique<BitWriter>(memory_manager);
856
785
  AuxOut patch_aux_out;
857
785
  JXL_RETURN_IF_ERROR(EncodeFrame(
858
785
      memory_manager, cparams, patch_frame_info, state->shared.metadata, ib,
859
785
      cms, pool, special_frame.get(), aux_out ? &patch_aux_out : nullptr));
860
785
  if (aux_out) {
861
0
    for (const auto& l : patch_aux_out.layers) {
862
0
      aux_out->layer(LayerType::Dictionary).Assimilate(l);
863
0
    }
864
0
  }
865
785
  const Span<const uint8_t> encoded = special_frame->GetSpan();
866
785
  state->special_frames.emplace_back(std::move(special_frame));
867
785
  if (subtract) {
868
785
    ImageBundle decoded(memory_manager, &state->shared.metadata->m);
869
785
    auto dec_state = jxl::make_unique<PassesDecoderState>(memory_manager);
870
785
    JXL_RETURN_IF_ERROR(dec_state->output_encoding_info.SetFromMetadata(
871
785
        *state->shared.metadata));
872
785
    const uint8_t* frame_start = encoded.data();
873
785
    size_t encoded_size = encoded.size();
874
785
    JXL_RETURN_IF_ERROR(DecodeFrame(
875
785
        dec_state.get(), pool, frame_start, encoded_size,
876
785
        /*frame_header=*/nullptr, &decoded, *state->shared.metadata));
877
785
    frame_start += decoded.decoded_bytes();
878
785
    encoded_size -= decoded.decoded_bytes();
879
785
    size_t ref_xsize =
880
785
        dec_state->shared_storage.reference_frames[idx].frame->color()->xsize();
881
    // if the frame itself uses patches, we need to decode another frame
882
785
    if (!ref_xsize) {
883
0
      JXL_RETURN_IF_ERROR(DecodeFrame(
884
0
          dec_state.get(), pool, frame_start, encoded_size,
885
0
          /*frame_header=*/nullptr, &decoded, *state->shared.metadata));
886
0
    }
887
785
    JXL_ENSURE(encoded_size == 0);
888
785
    state->shared.reference_frames[idx] =
889
785
        std::move(dec_state->shared_storage.reference_frames[idx]);
890
785
  } else {
891
0
    *state->shared.reference_frames[idx].frame = std::move(ib);
892
0
  }
893
785
  return true;
894
785
}
895
896
}  // namespace jxl