Coverage Report

Created: 2026-02-14 07:11

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
773
                                      AuxOut* aux_out) {
58
773
  JXL_ENSURE(pdic.HasAny());
59
773
  JxlMemoryManager* memory_manager = writer->memory_manager();
60
773
  std::vector<std::vector<Token>> tokens(1);
61
62
5.09M
  auto add_num = [&](int context, size_t num) {
63
5.09M
    tokens[0].emplace_back(context, static_cast<uint32_t>(num));
64
5.09M
  };
65
773
  size_t num_ref_patch = 0;
66
75.4k
  for (size_t i = 0; i < pdic.positions_.size();) {
67
74.7k
    size_t ref_pos_idx = pdic.positions_[i].ref_pos_idx;
68
1.48M
    while (i < pdic.positions_.size() &&
69
1.48M
           pdic.positions_[i].ref_pos_idx == ref_pos_idx) {
70
1.40M
      i++;
71
1.40M
    }
72
74.7k
    num_ref_patch++;
73
74.7k
  }
74
773
  add_num(kNumRefPatchContext, num_ref_patch);
75
773
  size_t blend_pos = 0;
76
773
  size_t blending_stride = pdic.blendings_stride_;
77
  // blending_stride == num_ec + 1; num_ec > 1 =>
78
773
  bool choose_alpha = (blending_stride > 1 + 1);
79
75.4k
  for (size_t i = 0; i < pdic.positions_.size();) {
80
74.7k
    size_t i_start = i;
81
74.7k
    size_t ref_pos_idx = pdic.positions_[i].ref_pos_idx;
82
74.7k
    const auto& ref_pos = pdic.ref_positions_[ref_pos_idx];
83
1.48M
    while (i < pdic.positions_.size() &&
84
1.48M
           pdic.positions_[i].ref_pos_idx == ref_pos_idx) {
85
1.40M
      i++;
86
1.40M
    }
87
74.7k
    size_t num = i - i_start;
88
74.7k
    JXL_ENSURE(num > 0);
89
74.7k
    add_num(kReferenceFrameContext, ref_pos.ref);
90
74.7k
    add_num(kPatchReferencePositionContext, ref_pos.x0);
91
74.7k
    add_num(kPatchReferencePositionContext, ref_pos.y0);
92
74.7k
    add_num(kPatchSizeContext, ref_pos.xsize - 1);
93
74.7k
    add_num(kPatchSizeContext, ref_pos.ysize - 1);
94
74.7k
    add_num(kPatchCountContext, num - 1);
95
1.48M
    for (size_t j = i_start; j < i; j++) {
96
1.40M
      const PatchPosition& pos = pdic.positions_[j];
97
1.40M
      if (j == i_start) {
98
74.7k
        add_num(kPatchPositionContext, pos.x);
99
74.7k
        add_num(kPatchPositionContext, pos.y);
100
1.33M
      } else {
101
1.33M
        add_num(kPatchOffsetContext,
102
1.33M
                PackSigned(pos.x - pdic.positions_[j - 1].x));
103
1.33M
        add_num(kPatchOffsetContext,
104
1.33M
                PackSigned(pos.y - pdic.positions_[j - 1].y));
105
1.33M
      }
106
3.24M
      for (size_t k = 0; k < blending_stride; ++k, ++blend_pos) {
107
1.83M
        const PatchBlending& info = pdic.blendings_[blend_pos];
108
1.83M
        add_num(kPatchBlendModeContext, static_cast<uint32_t>(info.mode));
109
1.83M
        if (UsesAlpha(info.mode) && choose_alpha) {
110
0
          add_num(kPatchAlphaChannelContext, info.alpha_channel);
111
0
        }
112
1.83M
        if (UsesClamp(info.mode)) {
113
0
          add_num(kPatchClampContext, TO_JXL_BOOL(info.clamp));
114
0
        }
115
1.83M
      }
116
1.40M
    }
117
74.7k
  }
118
119
773
  EntropyEncodingData codes;
120
773
  JXL_ASSIGN_OR_RETURN(
121
773
      size_t cost, BuildAndEncodeHistograms(memory_manager, HistogramParams(),
122
773
                                            kNumPatchDictionaryContexts, tokens,
123
773
                                            &codes, writer, layer, aux_out));
124
773
  (void)cost;
125
773
  JXL_RETURN_IF_ERROR(WriteTokens(tokens[0], codes, 0, writer, layer, aux_out));
126
773
  return true;
127
773
}
128
129
// static
130
Status PatchDictionaryEncoder::SubtractFrom(const PatchDictionary& pdic,
131
3.20k
                                            Image3F* opsin) {
132
  // TODO(veluca): this can likely be optimized knowing it runs on full images.
133
710k
  for (size_t y = 0; y < opsin->ysize(); y++) {
134
707k
    float* JXL_RESTRICT rows[3] = {
135
707k
        opsin->PlaneRow(0, y),
136
707k
        opsin->PlaneRow(1, y),
137
707k
        opsin->PlaneRow(2, y),
138
707k
    };
139
707k
    size_t blending_stride = pdic.blendings_stride_;
140
2.91M
    for (size_t pos_idx : pdic.GetPatchesForRow(y)) {
141
2.91M
      const size_t blending_idx = pos_idx * blending_stride;
142
2.91M
      const PatchPosition& pos = pdic.positions_[pos_idx];
143
2.91M
      const PatchReferencePosition& ref_pos =
144
2.91M
          pdic.ref_positions_[pos.ref_pos_idx];
145
2.91M
      const PatchBlendMode mode = pdic.blendings_[blending_idx].mode;
146
2.91M
      size_t by = pos.y;
147
2.91M
      size_t bx = pos.x;
148
2.91M
      size_t xsize = ref_pos.xsize;
149
2.91M
      JXL_ENSURE(y >= by);
150
2.91M
      JXL_ENSURE(y < by + ref_pos.ysize);
151
2.91M
      size_t iy = y - by;
152
2.91M
      size_t ref = ref_pos.ref;
153
2.91M
      const float* JXL_RESTRICT ref_rows[3] = {
154
2.91M
          pdic.reference_frames_->at(ref).frame->color()->ConstPlaneRow(
155
2.91M
              0, ref_pos.y0 + iy) +
156
2.91M
              ref_pos.x0,
157
2.91M
          pdic.reference_frames_->at(ref).frame->color()->ConstPlaneRow(
158
2.91M
              1, ref_pos.y0 + iy) +
159
2.91M
              ref_pos.x0,
160
2.91M
          pdic.reference_frames_->at(ref).frame->color()->ConstPlaneRow(
161
2.91M
              2, ref_pos.y0 + iy) +
162
2.91M
              ref_pos.x0,
163
2.91M
      };
164
17.2M
      for (size_t ix = 0; ix < xsize; ix++) {
165
57.2M
        for (size_t c = 0; c < 3; c++) {
166
42.9M
          if (mode == PatchBlendMode::kAdd) {
167
42.9M
            rows[c][bx + ix] -= ref_rows[c][ix];
168
42.9M
          } 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
42.9M
        }
177
14.3M
      }
178
2.91M
    }
179
707k
  }
180
3.20k
  return true;
181
3.20k
}
182
183
namespace {
184
185
struct PatchColorspaceInfo {
186
  float kChannelDequant[3];
187
  float kChannelWeights[3];
188
189
2.53k
  explicit PatchColorspaceInfo(bool is_xyb) {
190
2.53k
    if (is_xyb) {
191
2.53k
      kChannelDequant[0] = 0.01615;
192
2.53k
      kChannelDequant[1] = 0.08875;
193
2.53k
      kChannelDequant[2] = 0.1922;
194
2.53k
      kChannelWeights[0] = 30.0;
195
2.53k
      kChannelWeights[1] = 3.0;
196
2.53k
      kChannelWeights[2] = 1.0;
197
2.53k
    } 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.53k
  }
206
207
76.8M
  float ScaleForQuantization(float val, size_t c) {
208
76.8M
    return val / kChannelDequant[c];
209
76.8M
  }
210
211
76.8M
  int Quantize(float val, size_t c) {
212
76.8M
    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
76.8M
    scaled = jxl::Clamp1(scaled, -32768.0f, 32767.0f);
216
76.8M
    return std::trunc(scaled);
217
76.8M
  }
218
219
269M
  bool is_similar_v(const Color& v1, const Color& v2, float threshold) {
220
269M
    float distance = 0;
221
1.07G
    for (size_t c = 0; c < 3; c++) {
222
808M
      distance += std::abs(v1[c] - v2[c]) * kChannelWeights[c];
223
808M
    }
224
269M
    return distance <= threshold;
225
269M
  }
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.20k
    AuxOut* aux_out, bool is_xyb) {
235
3.20k
  std::vector<PatchInfo> info;
236
3.20k
  if (state->cparams.patches == Override::kOff) return info;
237
2.53k
  const auto& frame_dim = state->shared.frame_dim;
238
2.53k
  JxlMemoryManager* memory_manager = opsin.memory_manager();
239
240
2.53k
  PatchColorspaceInfo pci(is_xyb);
241
2.53k
  float kSimilarThreshold = 0.8f;
242
243
2.53k
  auto is_similar_impl = [&pci](const XY& p1, const XY& p2,
244
2.53k
                                const float* JXL_RESTRICT rows[3],
245
185M
                                size_t stride, float threshold) {
246
185M
    size_t offset1 = p1.second * stride + p1.first;
247
185M
    Color v1{rows[0][offset1], rows[1][offset1], rows[2][offset1]};
248
185M
    size_t offset2 = p2.second * stride + p2.first;
249
185M
    Color v2{rows[0][offset2], rows[1][offset2], rows[2][offset2]};
250
185M
    return pci.is_similar_v(v1, v2, threshold);
251
185M
  };
252
253
2.53k
  std::atomic<uint32_t> screenshot_area_seeds{0};
254
2.53k
  const size_t opsin_stride = opsin.PixelsPerRow();
255
2.53k
  const float* JXL_RESTRICT opsin_rows[3] = {opsin.ConstPlaneRow(0, 0),
256
2.53k
                                             opsin.ConstPlaneRow(1, 0),
257
2.53k
                                             opsin.ConstPlaneRow(2, 0)};
258
14.3M
  const auto pick = [&opsin_rows, opsin_stride](const XY& p) -> Color {
259
14.3M
    size_t offset = p.second * opsin_stride + p.first;
260
14.3M
    return {opsin_rows[0][offset], opsin_rows[1][offset],
261
14.3M
            opsin_rows[2][offset]};
262
14.3M
  };
263
2.53k
  const auto is_same_color = [&opsin_rows, opsin_stride](
264
184M
                                 const XY& p, const Color& c) -> size_t {
265
184M
    const size_t offset = p.second * opsin_stride + p.first;
266
709M
    for (size_t i = 0; i < c.size(); ++i) {
267
535M
      if (std::fabs(c[i] - opsin_rows[i][offset]) > 1e-4) {
268
11.5M
        return 0;
269
11.5M
      }
270
535M
    }
271
173M
    return 1;
272
184M
  };
273
274
133M
  auto is_similar = [&](const XY& p1, const XY& p2) {
275
133M
    return is_similar_impl(p1, p2, opsin_rows, opsin_stride, kSimilarThreshold);
276
133M
  };
277
278
  // Look for kPatchSide size squares, naturally aligned, that all have the same
279
  // pixel values.
280
2.53k
  JXL_ASSIGN_OR_RETURN(
281
2.53k
      ImageB is_screenshot_like,
282
2.53k
      ImageB::Create(memory_manager, DivCeil(frame_dim.xsize, kPatchSide),
283
2.53k
                     DivCeil(frame_dim.ysize, kPatchSide)));
284
2.53k
  ZeroFillImage(&is_screenshot_like);
285
2.53k
  const size_t pw = frame_dim.xsize / kPatchSide;
286
2.53k
  const size_t ph = frame_dim.ysize / kPatchSide;
287
288
14.3M
  const auto flat_patch = [&](const XY& o, const Color& base) -> bool {
289
41.8M
    for (size_t iy = 0; iy < kPatchSide; iy++) {
290
155M
      for (size_t ix = 0; ix < kPatchSide; ix++) {
291
128M
        XY p = {static_cast<int32_t>(o.first + ix),
292
128M
                static_cast<int32_t>(o.second + iy)};
293
128M
        if (!is_same_color(p, base)) {
294
8.05M
          return false;
295
8.05M
        }
296
128M
      }
297
35.5M
    }
298
6.29M
    return true;
299
14.3M
  };
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.53k
  const auto process_row = [&](const uint32_t py,
306
150k
                               size_t /* thread */) -> Status {
307
150k
    uint32_t found = 0;
308
14.5M
    for (size_t px = 1; px <= pw - 2; px++) {
309
14.3M
      XY o = {static_cast<uint32_t>(px * kPatchSide),
310
14.3M
              static_cast<uint32_t>(py * kPatchSide)};
311
14.3M
      Color base = pick(o);
312
14.3M
      if (!flat_patch(o, base)) continue;
313
6.29M
      size_t num_same = 0;
314
25.1M
      for (size_t y = (py - 1) * kPatchSide; y <= (py + 1) * kPatchSide;
315
18.8M
           y += kPatchSide) {
316
75.5M
        for (size_t x = (px - 1) * kPatchSide; x <= (px + 1) * kPatchSide;
317
56.6M
             x += kPatchSide) {
318
56.6M
          XY p = {static_cast<uint32_t>(x), static_cast<uint32_t>(y)};
319
56.6M
          num_same += is_same_color(p, base);
320
56.6M
        }
321
18.8M
      }
322
      // Too few equal pixels nearby.
323
6.29M
      if (num_same < 8) continue;
324
5.39M
      is_screenshot_like.Row(py)[px] = 1;
325
5.39M
      found++;
326
5.39M
    }
327
150k
    screenshot_area_seeds.fetch_add(found);
328
150k
    return true;
329
150k
  };
330
2.53k
  bool can_have_seeds = ((pw >= 3) && (ph >= 3));
331
2.53k
  if (can_have_seeds) {
332
1.89k
    JXL_RETURN_IF_ERROR(RunOnPool(pool, 1, ph - 2, ThreadPool::NoInit,
333
1.89k
                                  process_row, "IsScreenshotLike"));
334
1.89k
  }
335
336
  // TODO(veluca): also parallelize the rest of this function.
337
2.53k
  if (WantDebugOutput(cparams)) {
338
0
    JXL_RETURN_IF_ERROR(
339
0
        DumpPlaneNormalized(cparams, "screenshot_like", is_screenshot_like));
340
0
  }
341
342
2.53k
  constexpr int kSearchRadius = 1;
343
344
2.53k
  size_t num_seeds = screenshot_area_seeds.load();
345
2.53k
  if (!ApplyOverride(state->cparams.patches, (num_seeds > 0))) {
346
936
    return info;
347
936
  }
348
349
  // Search for "similar enough" pixels near the screenshot-like areas.
350
3.19k
  JXL_ASSIGN_OR_RETURN(
351
3.19k
      ImageB is_background,
352
3.19k
      ImageB::Create(memory_manager, frame_dim.xsize, frame_dim.ysize));
353
3.19k
  ZeroFillImage(&is_background);
354
3.19k
  JXL_ASSIGN_OR_RETURN(
355
1.59k
      Image3F background,
356
1.59k
      Image3F::Create(memory_manager, frame_dim.xsize, frame_dim.ysize));
357
1.59k
  ZeroFillImage(&background);
358
1.59k
  constexpr size_t kDistanceLimit = 50;
359
1.59k
  float* JXL_RESTRICT background_rows[3] = {
360
1.59k
      background.PlaneRow(0, 0),
361
1.59k
      background.PlaneRow(1, 0),
362
1.59k
      background.PlaneRow(2, 0),
363
1.59k
  };
364
1.59k
  const size_t background_stride = background.PixelsPerRow();
365
1.59k
  uint8_t* JXL_RESTRICT is_background_row = is_background.Row(0);
366
1.59k
  const size_t is_background_stride = is_background.PixelsPerRow();
367
1.57G
  const auto is_bg = [&](const XY& p) -> uint8_t& {
368
1.57G
    return is_background_row[p.second * is_background_stride + p.first];
369
1.57G
  };
370
1.59k
  std::vector<std::pair<XY, XY>> queue;
371
1.59k
  queue.reserve(2 * num_seeds * kPatchSide * kPatchSide);
372
1.59k
  size_t queue_front = 0;
373
  // TODO(eustas): coalesce neighbours, leave only border.
374
1.59k
  if (can_have_seeds) {
375
138k
    for (size_t py = 1; py < ph - 1; py++) {
376
136k
      uint8_t* JXL_RESTRICT screenshot_row = is_screenshot_like.Row(py);
377
13.4M
      for (size_t px = 1; px < pw - 1; px++) {
378
13.3M
        if (!screenshot_row[px]) continue;
379
26.9M
        for (size_t y = py * kPatchSide; y < (py + 1) * kPatchSide; ++y) {
380
107M
          for (size_t x = px * kPatchSide; x < (px + 1) * kPatchSide; ++x) {
381
86.3M
            XY p = {static_cast<uint32_t>(x), static_cast<uint32_t>(y)};
382
86.3M
            queue.emplace_back(p, p);
383
86.3M
            is_bg(p) = 1;
384
86.3M
          }
385
21.5M
        }
386
5.39M
      }
387
136k
    }
388
1.59k
  }
389
165M
  while (queue_front < queue.size()) {
390
165M
    XY cur = queue[queue_front].first;
391
165M
    XY src = queue[queue_front].second;
392
165M
    queue_front++;
393
165M
    Color src_color;
394
661M
    for (size_t c = 0; c < 3; c++) {
395
495M
      float clr = opsin_rows[c][src.second * opsin_stride + src.first];
396
495M
      src_color[c] = clr;
397
495M
      background_rows[c][cur.second * background_stride + cur.first] = clr;
398
495M
    }
399
661M
    for (int dx = -kSearchRadius; dx <= kSearchRadius; dx++) {
400
1.98G
      for (int dy = -kSearchRadius; dy <= kSearchRadius; dy++) {
401
1.48G
        XY next{cur.first + dx, cur.second + dy};
402
1.48G
        if (next.first < 0 || next.second < 0 ||
403
1.48G
            static_cast<uint32_t>(next.first) >= frame_dim.xsize ||
404
1.48G
            static_cast<uint32_t>(next.second) >= frame_dim.ysize) {
405
3.81M
          continue;
406
3.81M
        }
407
1.48G
        uint8_t& bg = is_bg(next);
408
1.48G
        if (bg) continue;
409
136M
        if (static_cast<uint32_t>(
410
136M
                std::abs(next.first - static_cast<int>(src.first)) +
411
136M
                std::abs(next.second - static_cast<int>(src.second))) >
412
136M
            kDistanceLimit) {
413
2.89M
          continue;
414
2.89M
        }
415
133M
        if (is_similar(src, next)) {
416
79.0M
          queue.emplace_back(next, src);
417
79.0M
          bg = 1;
418
79.0M
        }
419
133M
      }
420
495M
    }
421
165M
  }
422
1.59k
  queue.clear();
423
424
1.59k
  ImageF ccs;
425
1.59k
  Rng rng(0);
426
1.59k
  bool paint_ccs = false;
427
1.59k
  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.59k
  constexpr float kVerySimilarThreshold = 0.03f;
442
1.59k
  constexpr float kHasSimilarThreshold = 0.03f;
443
444
1.59k
  const float* JXL_RESTRICT const_background_rows[3] = {
445
1.59k
      background_rows[0], background_rows[1], background_rows[2]};
446
52.5M
  auto is_similar_b = [&](std::pair<int, int> p1, std::pair<int, int> p2) {
447
52.5M
    return is_similar_impl(p1, p2, const_background_rows, background_stride,
448
52.5M
                           kVerySimilarThreshold);
449
52.5M
  };
450
451
1.59k
  constexpr int kMinPeak = 2;
452
1.59k
  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.59k
  JXL_ASSIGN_OR_RETURN(
457
1.59k
      ImageB visited,
458
1.59k
      ImageB::Create(memory_manager, frame_dim.xsize, frame_dim.ysize));
459
1.59k
  ZeroFillImage(&visited);
460
1.59k
  uint8_t* JXL_RESTRICT visited_row = visited.Row(0);
461
1.59k
  const size_t visited_stride = visited.PixelsPerRow();
462
1.59k
  std::vector<std::pair<uint32_t, uint32_t>> cc;
463
1.59k
  std::vector<std::pair<uint32_t, uint32_t>> stack;
464
562k
  for (size_t y = 0; y < frame_dim.ysize; y++) {
465
222M
    for (size_t x = 0; x < frame_dim.xsize; x++) {
466
222M
      if (is_background_row[y * is_background_stride + x]) continue;
467
56.9M
      cc.clear();
468
56.9M
      stack.clear();
469
56.9M
      stack.emplace_back(static_cast<uint32_t>(x), static_cast<uint32_t>(y));
470
56.9M
      size_t min_x = x;
471
56.9M
      size_t max_x = x;
472
56.9M
      size_t min_y = y;
473
56.9M
      size_t max_y = y;
474
56.9M
      std::pair<uint32_t, uint32_t> reference;
475
56.9M
      bool found_border = false;
476
56.9M
      bool all_similar = true;
477
513M
      while (!stack.empty()) {
478
456M
        std::pair<uint32_t, uint32_t> cur = stack.back();
479
456M
        stack.pop_back();
480
456M
        if (visited_row[cur.second * visited_stride + cur.first]) continue;
481
56.9M
        visited_row[cur.second * visited_stride + cur.first] = 1;
482
56.9M
        if (cur.first < min_x) min_x = cur.first;
483
56.9M
        if (cur.first > max_x) max_x = cur.first;
484
56.9M
        if (cur.second < min_y) min_y = cur.second;
485
56.9M
        if (cur.second > max_y) max_y = cur.second;
486
56.9M
        if (paint_ccs) {
487
0
          cc.push_back(cur);
488
0
        }
489
227M
        for (int dx = -kSearchRadius; dx <= kSearchRadius; dx++) {
490
683M
          for (int dy = -kSearchRadius; dy <= kSearchRadius; dy++) {
491
512M
            if (dx == 0 && dy == 0) continue;
492
455M
            int next_first = static_cast<int32_t>(cur.first) + dx;
493
455M
            int next_second = static_cast<int32_t>(cur.second) + dy;
494
455M
            if (next_first < 0 || next_second < 0 ||
495
455M
                static_cast<uint32_t>(next_first) >= frame_dim.xsize ||
496
454M
                static_cast<uint32_t>(next_second) >= frame_dim.ysize) {
497
1.97M
              continue;
498
1.97M
            }
499
454M
            std::pair<uint32_t, uint32_t> next{next_first, next_second};
500
454M
            if (!is_background_row[next.second * is_background_stride +
501
454M
                                   next.first]) {
502
399M
              stack.push_back(next);
503
399M
            } else {
504
54.2M
              if (!found_border) {
505
1.67M
                reference = next;
506
1.67M
                found_border = true;
507
52.5M
              } else {
508
52.5M
                if (!is_similar_b(next, reference)) all_similar = false;
509
52.5M
              }
510
54.2M
            }
511
454M
          }
512
170M
        }
513
56.9M
      }
514
56.9M
      if (!found_border || !all_similar || max_x - min_x >= kMaxPatchSize ||
515
55.3M
          max_y - min_y >= kMaxPatchSize) {
516
55.3M
        continue;
517
55.3M
      }
518
1.62M
      size_t bpos = background_stride * reference.second + reference.first;
519
1.62M
      Color ref = {background_rows[0][bpos], background_rows[1][bpos],
520
1.62M
                   background_rows[2][bpos]};
521
1.62M
      bool has_similar = false;
522
1.62M
      for (size_t iy = std::max<int>(
523
1.62M
               static_cast<int32_t>(min_y) - kHasSimilarRadius, 0);
524
12.1M
           iy < std::min(max_y + kHasSimilarRadius + 1, frame_dim.ysize);
525
10.5M
           iy++) {
526
10.5M
        for (size_t ix = std::max<int>(
527
10.5M
                 static_cast<int32_t>(min_x) - kHasSimilarRadius, 0);
528
94.1M
             ix < std::min(max_x + kHasSimilarRadius + 1, frame_dim.xsize);
529
83.6M
             ix++) {
530
83.6M
          size_t opos = opsin_stride * iy + ix;
531
83.6M
          Color px = {opsin_rows[0][opos], opsin_rows[1][opos],
532
83.6M
                      opsin_rows[2][opos]};
533
83.6M
          if (pci.is_similar_v(ref, px, kHasSimilarThreshold)) {
534
57.4M
            has_similar = true;
535
57.4M
          }
536
83.6M
        }
537
10.5M
      }
538
1.62M
      if (!has_similar) continue;
539
1.61M
      info.emplace_back();
540
1.61M
      info.back().second.emplace_back(static_cast<uint32_t>(min_x),
541
1.61M
                                      static_cast<uint32_t>(min_y));
542
1.61M
      QuantizedPatch& patch = info.back().first;
543
1.61M
      patch.xsize = max_x - min_x + 1;
544
1.61M
      patch.ysize = max_y - min_y + 1;
545
1.61M
      bool too_big = false;
546
1.61M
      bool too_small = true;
547
4.83M
      for (size_t c : {1, 0, 2}) {
548
16.9M
        for (size_t iy = min_y; iy <= max_y; iy++) {
549
88.9M
          for (size_t ix = min_x; ix <= max_x; ix++) {
550
76.8M
            size_t offset = (iy - min_y) * patch.xsize + ix - min_x;
551
76.8M
            float fval = opsin_rows[c][iy * opsin_stride + ix] - ref[c];
552
76.8M
            patch.fpixels[c][offset] = fval;
553
76.8M
            int val = pci.Quantize(patch.fpixels[c][offset], c);
554
76.8M
            int8_t qval = static_cast<int8_t>(val);
555
76.8M
            patch.pixels[c][offset] = qval;
556
76.8M
            too_big |= (val != static_cast<int>(qval));
557
76.8M
            too_small &= (val < kMinPeak) && (val > -kMinPeak);
558
76.8M
          }
559
12.1M
        }
560
4.83M
      }
561
1.61M
      if (too_small || too_big) {
562
25.7k
        info.pop_back();
563
25.7k
        continue;
564
25.7k
      }
565
1.58M
      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.58M
    }
572
561k
  }
573
574
1.59k
  if (paint_ccs) {
575
0
    JXL_ENSURE(WantDebugOutput(cparams));
576
0
    JXL_RETURN_IF_ERROR(DumpPlaneNormalized(cparams, "ccs", ccs));
577
0
  }
578
1.59k
  if (info.empty()) {
579
550
    return info;
580
550
  }
581
582
  // Remove duplicates.
583
1.04k
  constexpr size_t kMinPatchOccurrences = 2;
584
1.04k
  std::sort(info.begin(), info.end());
585
1.04k
  size_t unique = 0;
586
1.58M
  for (size_t i = 1; i < info.size(); i++) {
587
1.58M
    if (info[i].first == info[unique].first) {
588
1.35M
      info[unique].second.insert(info[unique].second.end(),
589
1.35M
                                 info[i].second.begin(), info[i].second.end());
590
1.35M
    } else {
591
226k
      if (info[unique].second.size() >= kMinPatchOccurrences) {
592
75.4k
        unique++;
593
75.4k
      }
594
226k
      info[unique] = info[i];
595
226k
    }
596
1.58M
  }
597
1.04k
  if (info[unique].second.size() >= kMinPatchOccurrences) {
598
313
    unique++;
599
313
  }
600
1.04k
  info.resize(unique);
601
602
1.04k
  size_t max_patch_size = 0;
603
604
75.8k
  for (const auto& patch : info) {
605
75.8k
    size_t pixels = patch.first.xsize * patch.first.ysize;
606
75.8k
    if (pixels > max_patch_size) max_patch_size = pixels;
607
75.8k
  }
608
609
  // don't use patches if all patches are smaller than this
610
1.04k
  constexpr size_t kMinMaxPatchSize = 20;
611
1.04k
  if (max_patch_size < kMinMaxPatchSize) {
612
275
    info.clear();
613
275
  }
614
615
1.04k
  return info;
616
1.59k
}
617
618
}  // namespace
619
620
Status FindBestPatchDictionary(const Image3F& opsin,
621
                               PassesEncoderState* JXL_RESTRICT state,
622
                               const JxlCmsInterface& cms, ThreadPool* pool,
623
3.20k
                               AuxOut* aux_out, bool is_xyb) {
624
3.20k
  JXL_ASSIGN_OR_RETURN(
625
3.20k
      std::vector<PatchInfo> info,
626
3.20k
      FindTextLikePatches(state->cparams, opsin, state, pool, aux_out, is_xyb));
627
3.20k
  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.20k
  if (info.empty() &&
633
2.43k
      ApplyOverride(
634
2.43k
          state->cparams.dots,
635
2.43k
          state->cparams.speed_tier <= SpeedTier::kSquirrel &&
636
2.43k
              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.20k
  if (info.empty()) return true;
646
647
773
  std::sort(
648
418k
      info.begin(), info.end(), [&](const PatchInfo& a, const PatchInfo& b) {
649
418k
        return a.first.xsize * a.first.ysize > b.first.xsize * b.first.ysize;
650
418k
      });
651
652
773
  size_t max_x_size = 0;
653
773
  size_t max_y_size = 0;
654
773
  size_t total_pixels = 0;
655
656
74.7k
  for (const auto& patch : info) {
657
74.7k
    size_t pixels = patch.first.xsize * patch.first.ysize;
658
74.7k
    if (max_x_size < patch.first.xsize) max_x_size = patch.first.xsize;
659
74.7k
    if (max_y_size < patch.first.ysize) max_y_size = patch.first.ysize;
660
74.7k
    total_pixels += pixels;
661
74.7k
  }
662
663
  // Bin-packing & conversion of patches.
664
773
  constexpr float kBinPackingSlackness = 1.05f;
665
773
  size_t ref_xsize = std::max<float>(max_x_size, std::sqrt(total_pixels));
666
773
  size_t ref_ysize = std::max<float>(max_y_size, std::sqrt(total_pixels));
667
773
  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
773
  size_t max_y = 0;
670
1.13k
  do {
671
1.13k
    max_y = 0;
672
    // Increase packed image size.
673
1.13k
    ref_xsize = ref_xsize * kBinPackingSlackness + 1;
674
1.13k
    ref_ysize = ref_ysize * kBinPackingSlackness + 1;
675
676
1.13k
    JXL_ASSIGN_OR_RETURN(ImageB occupied,
677
1.13k
                         ImageB::Create(memory_manager, ref_xsize, ref_ysize));
678
1.13k
    ZeroFillImage(&occupied);
679
1.13k
    uint8_t* JXL_RESTRICT occupied_rows = occupied.Row(0);
680
1.13k
    size_t occupied_stride = occupied.PixelsPerRow();
681
682
1.13k
    bool success = true;
683
    // For every patch...
684
77.2k
    for (size_t patch = 0; patch < info.size(); patch++) {
685
76.4k
      size_t x0 = 0;
686
76.4k
      size_t y0 = 0;
687
76.4k
      size_t xsize = info[patch].first.xsize;
688
76.4k
      size_t ysize = info[patch].first.ysize;
689
76.4k
      bool found = false;
690
      // For every possible start position ...
691
4.42M
      for (; y0 + ysize <= ref_ysize; y0++) {
692
4.42M
        x0 = 0;
693
445M
        for (; x0 + xsize <= ref_xsize; x0++) {
694
441M
          bool has_occupied_pixel = false;
695
441M
          size_t x = x0;
696
          // Check if it is possible to place the patch in this position in the
697
          // reference frame.
698
2.40G
          for (size_t y = y0; y < y0 + ysize; y++) {
699
1.96G
            x = x0;
700
2.22G
            for (; x < x0 + xsize; x++) {
701
2.20G
              if (occupied_rows[y * occupied_stride + x]) {
702
1.94G
                has_occupied_pixel = true;
703
1.94G
                break;
704
1.94G
              }
705
2.20G
            }
706
1.96G
          }  // end of positioning check
707
441M
          if (!has_occupied_pixel) {
708
76.1k
            found = true;
709
76.1k
            break;
710
76.1k
          }
711
441M
          x0 = x;  // Jump to next pixel after the occupied one.
712
441M
        }
713
4.42M
        if (found) break;
714
4.42M
      }  // 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
76.4k
      if (!found) {
719
360
        success = false;
720
360
        break;
721
360
      }
722
723
      // We found a position: mark the corresponding positions in the reference
724
      // image as used.
725
76.1k
      ref_positions[patch] = {x0, y0};
726
465k
      for (size_t y = y0; y < y0 + ysize; y++) {
727
3.96M
        for (size_t x = x0; x < x0 + xsize; x++) {
728
3.57M
          occupied_rows[y * occupied_stride + x] = JXL_TRUE;
729
3.57M
        }
730
389k
      }
731
76.1k
      max_y = std::max(max_y, y0 + ysize);
732
76.1k
    }
733
734
1.13k
    if (success) break;
735
1.13k
  } while (true);
736
737
773
  JXL_ENSURE(ref_ysize >= max_y);
738
739
773
  ref_ysize = max_y;
740
741
773
  JXL_ASSIGN_OR_RETURN(Image3F reference_frame,
742
773
                       Image3F::Create(memory_manager, ref_xsize, ref_ysize));
743
  // TODO(veluca): figure out a better way to fill the image.
744
773
  ZeroFillImage(&reference_frame);
745
773
  std::vector<PatchPosition> positions;
746
773
  std::vector<PatchReferencePosition> pref_positions;
747
773
  std::vector<PatchBlending> blendings;
748
773
  float* JXL_RESTRICT ref_rows[3] = {
749
773
      reference_frame.PlaneRow(0, 0),
750
773
      reference_frame.PlaneRow(1, 0),
751
773
      reference_frame.PlaneRow(2, 0),
752
773
  };
753
773
  size_t ref_stride = reference_frame.PixelsPerRow();
754
773
  size_t num_ec = state->shared.metadata->m.num_extra_channels;
755
756
75.4k
  for (size_t i = 0; i < info.size(); i++) {
757
74.7k
    PatchReferencePosition ref_pos;
758
74.7k
    ref_pos.xsize = info[i].first.xsize;
759
74.7k
    ref_pos.ysize = info[i].first.ysize;
760
74.7k
    ref_pos.x0 = ref_positions[i].first;
761
74.7k
    ref_pos.y0 = ref_positions[i].second;
762
74.7k
    ref_pos.ref = kPatchFrameReferenceId;
763
445k
    for (size_t y = 0; y < ref_pos.ysize; y++) {
764
3.66M
      for (size_t x = 0; x < ref_pos.xsize; x++) {
765
13.1M
        for (size_t c = 0; c < 3; c++) {
766
9.88M
          ref_rows[c][(y + ref_pos.y0) * ref_stride + x + ref_pos.x0] =
767
9.88M
              info[i].first.fpixels[c][y * ref_pos.xsize + x];
768
9.88M
        }
769
3.29M
      }
770
371k
    }
771
1.40M
    for (const auto& pos : info[i].second) {
772
1.40M
      JXL_DEBUG_V(4, "Patch %" PRIuS "x%" PRIuS " at position %u,%u",
773
1.40M
                  ref_pos.xsize, ref_pos.ysize, pos.first, pos.second);
774
1.40M
      positions.emplace_back(
775
1.40M
          PatchPosition{pos.first, pos.second, pref_positions.size()});
776
      // Add blending for color channels, ignore other channels.
777
1.40M
      blendings.push_back({PatchBlendMode::kAdd, 0, false});
778
1.83M
      for (size_t j = 0; j < num_ec; ++j) {
779
424k
        blendings.push_back({PatchBlendMode::kNone, 0, false});
780
424k
      }
781
1.40M
    }
782
74.7k
    pref_positions.emplace_back(ref_pos);
783
74.7k
  }
784
785
773
  CompressParams cparams = state->cparams;
786
  // Recursive application of patches could create very weird issues.
787
773
  cparams.patches = Override::kOff;
788
789
773
  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
773
  JXL_RETURN_IF_ERROR(RoundtripPatchFrame(&reference_frame, state,
800
773
                                          kPatchFrameReferenceId, cparams, cms,
801
773
                                          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
773
  PatchDictionaryEncoder::SetPositions(
807
773
      &state->shared.image_features.patches, std::move(positions),
808
773
      std::move(pref_positions), std::move(blendings), num_ec + 1);
809
773
  return true;
810
773
}
811
812
Status RoundtripPatchFrame(Image3F* reference_frame,
813
                           PassesEncoderState* JXL_RESTRICT state, int idx,
814
                           CompressParams& cparams, const JxlCmsInterface& cms,
815
773
                           ThreadPool* pool, AuxOut* aux_out, bool subtract) {
816
773
  JxlMemoryManager* memory_manager = state->memory_manager();
817
773
  FrameInfo patch_frame_info;
818
773
  cparams.resampling = 1;
819
773
  cparams.ec_resampling = 1;
820
773
  cparams.dots = Override::kOff;
821
773
  cparams.noise = Override::kOff;
822
773
  cparams.modular_mode = true;
823
773
  cparams.responsive = 0;
824
773
  cparams.progressive_dc = 0;
825
773
  cparams.progressive_mode = Override::kOff;
826
773
  cparams.qprogressive_mode = Override::kOff;
827
  // Use gradient predictor and not Predictor::Best.
828
773
  cparams.options.predictor = Predictor::Gradient;
829
773
  patch_frame_info.save_as_reference = idx;  // always saved.
830
773
  patch_frame_info.frame_type = FrameType::kReferenceOnly;
831
773
  patch_frame_info.save_before_color_transform = true;
832
773
  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
773
  patch_frame_info.ib_needs_color_transform = false;
836
773
  JXL_RETURN_IF_ERROR(ib.SetFromImage(
837
773
      std::move(*reference_frame), state->shared.metadata->m.color_encoding));
838
773
  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
337
    std::vector<ImageF> extra_channels;
843
337
    extra_channels.reserve(ib.metadata()->extra_channel_info.size());
844
674
    for (size_t i = 0; i < ib.metadata()->extra_channel_info.size(); i++) {
845
337
      JXL_ASSIGN_OR_RETURN(
846
337
          ImageF ch, ImageF::Create(memory_manager, ib.xsize(), ib.ysize()));
847
337
      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
337
      ZeroFillImage(&extra_channels.back());
852
337
    }
853
337
    JXL_RETURN_IF_ERROR(ib.SetExtraChannels(std::move(extra_channels)));
854
337
  }
855
773
  auto special_frame = jxl::make_unique<BitWriter>(memory_manager);
856
773
  AuxOut patch_aux_out;
857
773
  JXL_RETURN_IF_ERROR(EncodeFrame(
858
773
      memory_manager, cparams, patch_frame_info, state->shared.metadata, ib,
859
773
      cms, pool, special_frame.get(), aux_out ? &patch_aux_out : nullptr));
860
773
  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
773
  const Span<const uint8_t> encoded = special_frame->GetSpan();
866
773
  state->special_frames.emplace_back(std::move(special_frame));
867
773
  if (subtract) {
868
773
    ImageBundle decoded(memory_manager, &state->shared.metadata->m);
869
773
    auto dec_state = jxl::make_unique<PassesDecoderState>(memory_manager);
870
773
    JXL_RETURN_IF_ERROR(dec_state->output_encoding_info.SetFromMetadata(
871
773
        *state->shared.metadata));
872
773
    const uint8_t* frame_start = encoded.data();
873
773
    size_t encoded_size = encoded.size();
874
773
    JXL_RETURN_IF_ERROR(DecodeFrame(
875
773
        dec_state.get(), pool, frame_start, encoded_size,
876
773
        /*frame_header=*/nullptr, &decoded, *state->shared.metadata));
877
773
    frame_start += decoded.decoded_bytes();
878
773
    encoded_size -= decoded.decoded_bytes();
879
773
    size_t ref_xsize =
880
773
        dec_state->shared_storage.reference_frames[idx].frame->color()->xsize();
881
    // if the frame itself uses patches, we need to decode another frame
882
773
    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
773
    JXL_ENSURE(encoded_size == 0);
888
773
    state->shared.reference_frames[idx] =
889
773
        std::move(dec_state->shared_storage.reference_frames[idx]);
890
773
  } else {
891
0
    *state->shared.reference_frames[idx].frame = std::move(ib);
892
0
  }
893
773
  return true;
894
773
}
895
896
}  // namespace jxl