Coverage Report

Created: 2026-09-14 07:15

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjxl/lib/jxl/splines.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/splines.h"
7
8
#include <jxl/memory_manager.h>
9
10
#include <algorithm>
11
#include <cinttypes>  // PRIu64
12
#include <cmath>
13
#include <cstddef>
14
#include <cstdint>
15
#include <cstring>
16
#include <limits>
17
#include <utility>
18
#include <vector>
19
20
#include "lib/jxl/base/bits.h"
21
#include "lib/jxl/base/common.h"
22
#include "lib/jxl/base/compiler_specific.h"
23
#include "lib/jxl/base/printf_macros.h"
24
#include "lib/jxl/base/rect.h"
25
#include "lib/jxl/base/status.h"
26
#include "lib/jxl/chroma_from_luma.h"
27
#include "lib/jxl/common.h"  // JXL_HIGH_PRECISION
28
#include "lib/jxl/dct_scales.h"
29
#include "lib/jxl/dec_ans.h"
30
#include "lib/jxl/dec_bit_reader.h"
31
#include "lib/jxl/image.h"
32
#include "lib/jxl/memory_manager_internal.h"
33
#include "lib/jxl/pack_signed.h"
34
35
#undef HWY_TARGET_INCLUDE
36
#define HWY_TARGET_INCLUDE "lib/jxl/splines.cc"
37
#include <hwy/foreach_target.h>
38
#include <hwy/highway.h>
39
40
#include "lib/jxl/base/fast_math-inl.h"
41
HWY_BEFORE_NAMESPACE();
42
namespace jxl {
43
namespace HWY_NAMESPACE {
44
namespace {
45
46
// These templates are not found via ADL.
47
using hwy::HWY_NAMESPACE::Mul;
48
using hwy::HWY_NAMESPACE::MulAdd;
49
using hwy::HWY_NAMESPACE::MulSub;
50
using hwy::HWY_NAMESPACE::Sqrt;
51
using hwy::HWY_NAMESPACE::Sub;
52
53
// Given a set of DCT coefficients, this returns the result of performing cosine
54
// interpolation on the original samples.
55
877k
float ContinuousIDCT(const Dct32& dct, const float t) {
56
  // We compute here the DCT-3 of the `dct` vector, rescaled by a factor of
57
  // sqrt(32). This is such that an input vector vector {x, 0, ..., 0} produces
58
  // a constant result of x. dct[0] was scaled in Dequantize() to allow uniform
59
  // treatment of all the coefficients.
60
877k
  constexpr float kMultipliers[32] = {
61
877k
      kPi / 32 * 0,  kPi / 32 * 1,  kPi / 32 * 2,  kPi / 32 * 3,  kPi / 32 * 4,
62
877k
      kPi / 32 * 5,  kPi / 32 * 6,  kPi / 32 * 7,  kPi / 32 * 8,  kPi / 32 * 9,
63
877k
      kPi / 32 * 10, kPi / 32 * 11, kPi / 32 * 12, kPi / 32 * 13, kPi / 32 * 14,
64
877k
      kPi / 32 * 15, kPi / 32 * 16, kPi / 32 * 17, kPi / 32 * 18, kPi / 32 * 19,
65
877k
      kPi / 32 * 20, kPi / 32 * 21, kPi / 32 * 22, kPi / 32 * 23, kPi / 32 * 24,
66
877k
      kPi / 32 * 25, kPi / 32 * 26, kPi / 32 * 27, kPi / 32 * 28, kPi / 32 * 29,
67
877k
      kPi / 32 * 30, kPi / 32 * 31,
68
877k
  };
69
877k
  HWY_CAPPED(float, 32) df;
70
877k
  auto result = Zero(df);
71
877k
  const auto tandhalf = Set(df, t + 0.5f);
72
28.9M
  for (int i = 0; i < 32; i += Lanes(df)) {
73
28.0M
    auto cos_arg = Mul(LoadU(df, kMultipliers + i), tandhalf);
74
28.0M
    auto cos = FastCosf(df, cos_arg);
75
28.0M
    auto local_res = Mul(LoadU(df, dct.data() + i), cos);
76
28.0M
    result = MulAdd(Set(df, kSqrt2), local_res, result);
77
28.0M
  }
78
877k
  return GetLane(SumOfLanes(df, result));
79
877k
}
80
81
template <typename DF>
82
void DrawSegment(DF df, const SplineSegment& segment, const bool add,
83
                 const size_t y, const size_t x, const size_t x0,
84
20.1M
                 float* JXL_RESTRICT rows[3]) {
85
20.1M
  Rebind<int32_t, DF> di;
86
20.1M
  const auto inv_sigma = Set(df, segment.inv_sigma);
87
20.1M
  const auto half = Set(df, 0.5f);
88
20.1M
  const auto one_over_2s2 = Set(df, 0.353553391f);
89
20.1M
  const auto sigma_over_4_times_intensity =
90
20.1M
      Set(df, segment.sigma_over_4_times_intensity);
91
20.1M
  const auto dx =
92
20.1M
      Sub(ConvertTo(df, Iota(di, x + x0)), Set(df, segment.center_x));
93
20.1M
  const auto dy = Set(df, y - segment.center_y);
94
20.1M
  const auto sqd = MulAdd(dx, dx, Mul(dy, dy));
95
20.1M
  const auto distance = Sqrt(sqd);
96
20.1M
  const auto one_dimensional_factor =
97
20.1M
      Sub(FastErff(df, Mul(MulAdd(distance, half, one_over_2s2), inv_sigma)),
98
20.1M
          FastErff(df, Mul(MulSub(distance, half, one_over_2s2), inv_sigma)));
99
20.1M
  auto local_intensity =
100
20.1M
      Mul(sigma_over_4_times_intensity,
101
20.1M
          Mul(one_dimensional_factor, one_dimensional_factor));
102
80.6M
  for (size_t c = 0; c < 3; ++c) {
103
60.4M
    const auto cm = Set(df, add ? segment.color[c] : -segment.color[c]);
104
60.4M
    const auto in = LoadU(df, rows[c] + x);
105
60.4M
    StoreU(MulAdd(cm, local_intensity, in), df, rows[c] + x);
106
60.4M
  }
107
20.1M
}
108
109
void DrawSegment(const SplineSegment& segment, const bool add, const size_t y,
110
                 const size_t x0, const size_t x1,
111
1.42M
                 float* JXL_RESTRICT rows[3]) {
112
1.42M
  ptrdiff_t start = std::llround(segment.center_x - segment.maximum_distance);
113
1.42M
  ptrdiff_t end = std::llround(segment.center_x + segment.maximum_distance);
114
1.42M
  if (end < static_cast<ptrdiff_t>(x0) || start >= static_cast<ptrdiff_t>(x1)) {
115
923k
    return;  // span does not intersect scan
116
923k
  }
117
497k
  size_t span_x0 = std::max<ptrdiff_t>(x0, start) - x0;
118
497k
  size_t span_x1 = std::min<ptrdiff_t>(x1, end + 1) - x0;  // exclusive
119
497k
  HWY_FULL(float) df;
120
497k
  size_t x = span_x0;
121
20.6M
  for (; x + Lanes(df) <= span_x1; x += Lanes(df)) {
122
20.1M
    DrawSegment(df, segment, add, y, x, x0, rows);
123
20.1M
  }
124
497k
  for (; x < span_x1; ++x) {
125
0
    DrawSegment(HWY_CAPPED(float, 1)(), segment, add, y, x, x0, rows);
126
0
  }
127
497k
}
128
129
void ComputeSegments(size_t image_ysize, const Spline::Point& center,
130
                     const float intensity, const float color[3],
131
                     const float sigma, std::vector<SplineSegment>& segments,
132
219k
                     std::vector<SplineSegmentSpan>& segment_spans) {
133
  // Sanity check sigma, inverse sigma and intensity
134
219k
  if (!(std::isfinite(sigma) && sigma != 0.0f && std::isfinite(1.0f / sigma) &&
135
219k
        std::isfinite(intensity))) {
136
36
    return;
137
36
  }
138
219k
#if JXL_HIGH_PRECISION
139
219k
  constexpr float kDistanceExp = 5;
140
#else
141
  // About 30% faster.
142
  constexpr float kDistanceExp = 3;
143
#endif
144
  // We cap from below colors to at least 0.01.
145
219k
  float max_color = 0.01f;
146
877k
  for (size_t c = 0; c < 3; c++) {
147
657k
    max_color = std::max(max_color, std::abs(color[c] * intensity));
148
657k
  }
149
  // Distance beyond which max_color*intensity*exp(-d^2 / (2 * sigma^2)) drops
150
  // below 10^-kDistanceExp.
151
219k
  const float maximum_distance =
152
219k
      std::sqrt(-2.0f * sigma * sigma *
153
219k
                (std::log(0.1f) * kDistanceExp - std::log(max_color)));
154
155
219k
  ptrdiff_t y0 = std::llround(center.y - maximum_distance);
156
219k
  y0 = std::max<ptrdiff_t>(y0, 0);
157
219k
  ptrdiff_t y1 = std::llround(center.y + maximum_distance) + 1;
158
219k
  y1 = std::min<ptrdiff_t>(y1, image_ysize);
159
219k
  if (y1 <= y0) return;
160
161
170k
  SplineSegment segment;
162
170k
  segment.center_y = center.y;
163
170k
  segment.center_x = center.x;
164
170k
  memcpy(segment.color, color, sizeof(segment.color));
165
170k
  segment.inv_sigma = 1.0f / sigma;
166
170k
  segment.sigma_over_4_times_intensity = .25f * sigma * intensity;
167
170k
  segment.maximum_distance = maximum_distance;
168
170k
  segments.emplace_back(segment);
169
170
170k
  segment_spans.emplace_back(y0, y1);
171
170k
}
172
173
void DrawSegments(float* JXL_RESTRICT row_x, float* JXL_RESTRICT row_y,
174
                  float* JXL_RESTRICT row_b, size_t y, size_t x0, size_t x1,
175
                  const bool add, const SplineSegment* segments,
176
                  const size_t* segment_indices,
177
37.5k
                  const ptrdiff_t* segment_y_start) {
178
37.5k
  float* JXL_RESTRICT rows[3] = {row_x, row_y, row_b};
179
1.45M
  for (ptrdiff_t i = segment_y_start[y]; i < segment_y_start[y + 1]; i++) {
180
1.42M
    DrawSegment(segments[segment_indices[i]], add, y, x0, x1, rows);
181
1.42M
  }
182
37.5k
}
183
184
void SegmentsFromPoints(
185
    size_t image_ysize, const Spline& spline,
186
    const std::vector<std::pair<Spline::Point, float>>& points_to_draw,
187
    const float arc_length, std::vector<SplineSegment>& segments,
188
991
    std::vector<SplineSegmentSpan>& segments_spans) {
189
991
  const float inv_arc_length = 1.0f / arc_length;
190
991
  int k = 0;
191
219k
  for (const auto& point_to_draw : points_to_draw) {
192
219k
    const Spline::Point& point = point_to_draw.first;
193
219k
    const float multiplier = point_to_draw.second;
194
219k
    const float progress_along_arc =
195
219k
        std::min(1.f, (k * kDesiredRenderingDistance) * inv_arc_length);
196
219k
    ++k;
197
219k
    float color[3];
198
877k
    for (size_t c = 0; c < 3; ++c) {
199
657k
      color[c] =
200
657k
          ContinuousIDCT(spline.color_dct[c], (32 - 1) * progress_along_arc);
201
657k
    }
202
219k
    const float sigma =
203
219k
        ContinuousIDCT(spline.sigma_dct, (32 - 1) * progress_along_arc);
204
219k
    ComputeSegments(image_ysize, point, multiplier, color, sigma, segments,
205
219k
                    segments_spans);
206
219k
  }
207
991
}
208
}  // namespace
209
// NOLINTNEXTLINE(google-readability-namespace-comments)
210
}  // namespace HWY_NAMESPACE
211
}  // namespace jxl
212
HWY_AFTER_NAMESPACE();
213
214
#if HWY_ONCE
215
namespace jxl {
216
HWY_EXPORT(SegmentsFromPoints);
217
HWY_EXPORT(DrawSegments);
218
219
namespace {
220
221
// It is not in spec, but reasonable limit to avoid overflows.
222
template <typename T>
223
15.2k
Status ValidateSplinePointPos(const T& x, const T& y) {
224
15.2k
  constexpr T kSplinePosLimit = 1u << 23;
225
15.2k
  if ((x >= kSplinePosLimit) || (x <= -kSplinePosLimit) ||
226
15.2k
      (y >= kSplinePosLimit) || (y <= -kSplinePosLimit)) {
227
1
    return JXL_FAILURE("Spline coordinates out of bounds");
228
1
  }
229
15.2k
  return true;
230
15.2k
}
splines.cc:jxl::Status jxl::(anonymous namespace)::ValidateSplinePointPos<long>(long const&, long const&)
Line
Count
Source
223
5.41k
Status ValidateSplinePointPos(const T& x, const T& y) {
224
5.41k
  constexpr T kSplinePosLimit = 1u << 23;
225
5.41k
  if ((x >= kSplinePosLimit) || (x <= -kSplinePosLimit) ||
226
5.41k
      (y >= kSplinePosLimit) || (y <= -kSplinePosLimit)) {
227
1
    return JXL_FAILURE("Spline coordinates out of bounds");
228
1
  }
229
5.41k
  return true;
230
5.41k
}
splines.cc:jxl::Status jxl::(anonymous namespace)::ValidateSplinePointPos<float>(float const&, float const&)
Line
Count
Source
223
1.16k
Status ValidateSplinePointPos(const T& x, const T& y) {
224
1.16k
  constexpr T kSplinePosLimit = 1u << 23;
225
1.16k
  if ((x >= kSplinePosLimit) || (x <= -kSplinePosLimit) ||
226
1.16k
      (y >= kSplinePosLimit) || (y <= -kSplinePosLimit)) {
227
0
    return JXL_FAILURE("Spline coordinates out of bounds");
228
0
  }
229
1.16k
  return true;
230
1.16k
}
splines.cc:jxl::Status jxl::(anonymous namespace)::ValidateSplinePointPos<int>(int const&, int const&)
Line
Count
Source
223
8.66k
Status ValidateSplinePointPos(const T& x, const T& y) {
224
8.66k
  constexpr T kSplinePosLimit = 1u << 23;
225
8.66k
  if ((x >= kSplinePosLimit) || (x <= -kSplinePosLimit) ||
226
8.66k
      (y >= kSplinePosLimit) || (y <= -kSplinePosLimit)) {
227
0
    return JXL_FAILURE("Spline coordinates out of bounds");
228
0
  }
229
8.66k
  return true;
230
8.66k
}
231
232
// Maximum number of spline control points per frame is
233
//   std::min(kMaxNumControlPoints, xsize * ysize / 2)
234
constexpr size_t kMaxNumControlPoints = 1u << 20u;
235
constexpr size_t kMaxNumControlPointsPerPixelRatio = 2;
236
237
0
float AdjustedQuant(const int32_t adjustment) {
238
0
  return (adjustment >= 0) ? (1.f + .125f * adjustment)
239
0
                           : 1.f / (1.f - .125f * adjustment);
240
0
}
241
242
1.16k
float InvAdjustedQuant(const int32_t adjustment) {
243
1.16k
  return (adjustment >= 0) ? 1.f / (1.f + .125f * adjustment)
244
1.16k
                           : (1.f - .125f * adjustment);
245
1.16k
}
246
247
// X, Y, B, sigma.
248
constexpr float kChannelWeight[] = {0.0042f, 0.075f, 0.07f, .3333f};
249
250
Status DecodeAllStartingPoints(std::vector<Spline::Point>* const points,
251
                               BitReader* const br, ANSSymbolReader* reader,
252
                               const std::vector<uint8_t>& context_map,
253
1.04k
                               const size_t num_splines) {
254
1.04k
  points->clear();
255
1.04k
  points->reserve(num_splines);
256
1.04k
  int64_t last_x = 0;
257
1.04k
  int64_t last_y = 0;
258
6.46k
  for (size_t i = 0; i < num_splines; i++) {
259
5.41k
    size_t dx =
260
5.41k
        reader->ReadHybridUint(kStartingPositionContext, br, context_map);
261
5.41k
    size_t dy =
262
5.41k
        reader->ReadHybridUint(kStartingPositionContext, br, context_map);
263
5.41k
    int64_t x;
264
5.41k
    int64_t y;
265
5.41k
    if (i != 0) {
266
4.37k
      x = UnpackSigned(dx) + last_x;
267
4.37k
      y = UnpackSigned(dy) + last_y;
268
4.37k
    } else {
269
1.04k
      x = dx;
270
1.04k
      y = dy;
271
1.04k
    }
272
5.41k
    JXL_RETURN_IF_ERROR(ValidateSplinePointPos(x, y));
273
5.41k
    points->emplace_back(static_cast<float>(x), static_cast<float>(y));
274
5.41k
    last_x = x;
275
5.41k
    last_y = y;
276
5.41k
  }
277
1.04k
  return true;
278
1.04k
}
279
280
struct Vector {
281
  float x, y;
282
0
  Vector operator-() const { return {-x, -y}; }
283
0
  Vector operator+(const Vector& other) const {
284
0
    return {x + other.x, y + other.y};
285
0
  }
286
287k
  float SquaredNorm() const { return x * x + y * y; }
287
};
288
606k
Vector operator*(const float k, const Vector& vec) {
289
606k
  return {k * vec.x, k * vec.y};
290
606k
}
291
292
608k
Spline::Point operator+(const Spline::Point& p, const Vector& vec) {
293
608k
  return {p.x + vec.x, p.y + vec.y};
294
608k
}
295
896k
Vector operator-(const Spline::Point& a, const Spline::Point& b) {
296
896k
  return {a.x - b.x, a.y - b.y};
297
896k
}
298
299
// TODO(eustas): avoid making a copy of "points".
300
void DrawCentripetalCatmullRomSpline(std::vector<Spline::Point> points,
301
1.16k
                                     std::vector<Spline::Point>& result) {
302
1.16k
  if (points.empty()) return;
303
1.16k
  if (points.size() == 1) {
304
174
    result.push_back(points[0]);
305
174
    return;
306
174
  }
307
  // Number of points to compute between each control point.
308
991
  static constexpr int kNumPoints = 16;
309
991
  result.reserve((points.size() - 1) * kNumPoints + 1);
310
991
  points.insert(points.begin(), points[0] + (points[0] - points[1]));
311
991
  points.push_back(points[points.size() - 1] +
312
991
                   (points[points.size() - 1] - points[points.size() - 2]));
313
  // points has at least 4 elements at this point.
314
5.31k
  for (size_t start = 0; start < points.size() - 3; ++start) {
315
    // 4 of them are used, and we draw from p[1] to p[2].
316
4.32k
    const Spline::Point* const p = &points[start];
317
4.32k
    result.push_back(p[1]);
318
4.32k
    float d[3];
319
4.32k
    float t[4];
320
4.32k
    t[0] = 0;
321
17.3k
    for (int k = 0; k < 3; ++k) {
322
      // TODO(eustas): for each segment delta is calculated 3 times...
323
      // TODO(eustas): restrict d[k] with reasonable limit and spec it.
324
12.9k
      d[k] = std::sqrt(hypotf(p[k + 1].x - p[k].x, p[k + 1].y - p[k].y));
325
12.9k
      t[k + 1] = t[k] + d[k];
326
12.9k
    }
327
69.2k
    for (int i = 1; i < kNumPoints; ++i) {
328
64.9k
      const float tt = d[0] + (static_cast<float>(i) / kNumPoints) * d[1];
329
64.9k
      Spline::Point a[3];
330
259k
      for (int k = 0; k < 3; ++k) {
331
        // TODO(eustas): reciprocal multiplication would be faster.
332
194k
        a[k] = p[k] + ((tt - t[k]) / d[k]) * (p[k + 1] - p[k]);
333
194k
      }
334
64.9k
      Spline::Point b[2];
335
194k
      for (int k = 0; k < 2; ++k) {
336
129k
        b[k] = a[k] + ((tt - t[k]) / (d[k] + d[k + 1])) * (a[k + 1] - a[k]);
337
129k
      }
338
64.9k
      result.push_back(b[0] + ((tt - t[1]) / d[1]) * (b[1] - b[0]));
339
64.9k
    }
340
4.32k
  }
341
991
  result.push_back(points[points.size() - 2]);
342
991
}
343
344
// Move along the line segments defined by `points`, `kDesiredRenderingDistance`
345
// pixels at a time, and call `functor` with each point and the actual distance
346
// to the previous point (which will always be kDesiredRenderingDistance except
347
// possibly for the very last point).
348
// TODO(eustas): this method always adds the last point, but never the first
349
//               (unless those are one); I believe both ends matter.
350
template <typename Points, typename Functor>
351
1.16k
Status ForEachEquallySpacedPoint(const Points& points, const Functor& functor) {
352
1.16k
  JXL_ENSURE(!points.empty());
353
1.16k
  Spline::Point current = points.front();
354
1.16k
  functor(current, kDesiredRenderingDistance);
355
1.16k
  auto next = points.begin();
356
218k
  while (next != points.end()) {
357
218k
    const Spline::Point* previous = &current;
358
218k
    float arclength_from_previous = 0.f;
359
288k
    for (;;) {
360
288k
      if (next == points.end()) {
361
1.16k
        functor(*previous, arclength_from_previous);
362
1.16k
        return true;
363
1.16k
      }
364
287k
      const float arclength_to_next =
365
287k
          std::sqrt((*next - *previous).SquaredNorm());
366
287k
      if (arclength_from_previous + arclength_to_next >=
367
287k
          kDesiredRenderingDistance) {
368
217k
        current =
369
217k
            *previous + ((kDesiredRenderingDistance - arclength_from_previous) /
370
217k
                         arclength_to_next) *
371
217k
                            (*next - *previous);
372
217k
        functor(current, kDesiredRenderingDistance);
373
217k
        break;
374
217k
      }
375
70.3k
      arclength_from_previous += arclength_to_next;
376
70.3k
      previous = &*next;
377
70.3k
      ++next;
378
70.3k
    }
379
218k
  }
380
0
  return true;
381
1.16k
}
382
383
}  // namespace
384
385
StatusOr<QuantizedSpline> QuantizedSpline::Create(
386
    const Spline& original, const int32_t quantization_adjustment,
387
0
    const float y_to_x, const float y_to_b) {
388
0
  JXL_ENSURE(!original.control_points.empty());
389
0
  QuantizedSpline result;
390
0
  result.control_points_.reserve(original.control_points.size() - 1);
391
0
  const Spline::Point& starting_point = original.control_points.front();
392
0
  int previous_x = static_cast<int>(std::round(starting_point.x));
393
0
  int previous_y = static_cast<int>(std::round(starting_point.y));
394
0
  int previous_delta_x = 0;
395
0
  int previous_delta_y = 0;
396
0
  for (auto it = original.control_points.begin() + 1;
397
0
       it != original.control_points.end(); ++it) {
398
0
    const int new_x = static_cast<int>(std::round(it->x));
399
0
    const int new_y = static_cast<int>(std::round(it->y));
400
0
    const int new_delta_x = new_x - previous_x;
401
0
    const int new_delta_y = new_y - previous_y;
402
0
    result.control_points_.emplace_back(new_delta_x - previous_delta_x,
403
0
                                        new_delta_y - previous_delta_y);
404
0
    previous_delta_x = new_delta_x;
405
0
    previous_delta_y = new_delta_y;
406
0
    previous_x = new_x;
407
0
    previous_y = new_y;
408
0
  }
409
410
0
  const auto to_int = [](float v) -> int {
411
    // Maximal int representable with float.
412
0
    constexpr float kMax = std::numeric_limits<int>::max() - 127;
413
0
    constexpr float kMin = -kMax;
414
0
    return static_cast<int>(std::round(Clamp1(v, kMin, kMax)));
415
0
  };
416
417
0
  const auto quant = AdjustedQuant(quantization_adjustment);
418
0
  const auto inv_quant = InvAdjustedQuant(quantization_adjustment);
419
0
  for (int c : {1, 0, 2}) {
420
0
    float factor = (c == 0) ? y_to_x : (c == 1) ? 0 : y_to_b;
421
0
    for (int i = 0; i < 32; ++i) {
422
0
      const float dct_factor = (i == 0) ? kSqrt2 : 1.0f;
423
0
      const float inv_dct_factor = (i == 0) ? kSqrt0_5 : 1.0f;
424
0
      auto restored_y = result.color_dct_[1][i] * inv_dct_factor *
425
0
                        kChannelWeight[1] * inv_quant;
426
0
      auto decorrelated = original.color_dct[c][i] - factor * restored_y;
427
0
      result.color_dct_[c][i] =
428
0
          to_int(decorrelated * dct_factor * quant / kChannelWeight[c]);
429
0
    }
430
0
  }
431
0
  for (int i = 0; i < 32; ++i) {
432
0
    const float dct_factor = (i == 0) ? kSqrt2 : 1.0f;
433
0
    result.sigma_dct_[i] =
434
0
        to_int(original.sigma_dct[i] * dct_factor * quant / kChannelWeight[3]);
435
0
  }
436
0
  return result;
437
0
}
438
439
Status QuantizedSpline::Dequantize(const Spline::Point& starting_point,
440
                                   const int32_t quantization_adjustment,
441
                                   const float y_to_x, const float y_to_b,
442
                                   const uint64_t image_size,
443
                                   uint64_t* total_estimated_area_reached,
444
1.16k
                                   Spline& result) const {
445
1.16k
  constexpr uint64_t kOne = static_cast<uint64_t>(1);
446
1.16k
  const uint64_t area_limit =
447
1.16k
      std::min(1024 * image_size + (kOne << 32), kOne << 42);
448
449
1.16k
  result.control_points.clear();
450
1.16k
  result.control_points.reserve(control_points_.size() + 1);
451
1.16k
  float px = std::round(starting_point.x);
452
1.16k
  float py = std::round(starting_point.y);
453
1.16k
  JXL_RETURN_IF_ERROR(ValidateSplinePointPos(px, py));
454
1.16k
  int current_x = static_cast<int>(px);
455
1.16k
  int current_y = static_cast<int>(py);
456
1.16k
  result.control_points.emplace_back(static_cast<float>(current_x),
457
1.16k
                                     static_cast<float>(current_y));
458
1.16k
  int current_delta_x = 0;
459
1.16k
  int current_delta_y = 0;
460
1.16k
  uint64_t manhattan_distance = 0;
461
4.33k
  for (const auto& point : control_points_) {
462
4.33k
    current_delta_x += point.first;
463
4.33k
    current_delta_y += point.second;
464
4.33k
    manhattan_distance += std::abs(current_delta_x) + std::abs(current_delta_y);
465
4.33k
    if (manhattan_distance > area_limit) {
466
0
      return JXL_FAILURE("Too large manhattan_distance reached: %" PRIu64,
467
0
                         manhattan_distance);
468
0
    }
469
4.33k
    JXL_RETURN_IF_ERROR(
470
4.33k
        ValidateSplinePointPos(current_delta_x, current_delta_y));
471
4.33k
    current_x += current_delta_x;
472
4.33k
    current_y += current_delta_y;
473
4.33k
    JXL_RETURN_IF_ERROR(ValidateSplinePointPos(current_x, current_y));
474
4.33k
    result.control_points.emplace_back(static_cast<float>(current_x),
475
4.33k
                                       static_cast<float>(current_y));
476
4.33k
  }
477
478
1.16k
  const auto inv_quant = InvAdjustedQuant(quantization_adjustment);
479
4.66k
  for (int c = 0; c < 3; ++c) {
480
115k
    for (int i = 0; i < 32; ++i) {
481
111k
      const float inv_dct_factor = (i == 0) ? kSqrt0_5 : 1.0f;
482
111k
      result.color_dct[c][i] =
483
111k
          color_dct_[c][i] * inv_dct_factor * kChannelWeight[c] * inv_quant;
484
111k
    }
485
3.49k
  }
486
38.4k
  for (int i = 0; i < 32; ++i) {
487
37.3k
    result.color_dct[0][i] += y_to_x * result.color_dct[1][i];
488
37.3k
    result.color_dct[2][i] += y_to_b * result.color_dct[1][i];
489
37.3k
  }
490
1.16k
  uint64_t width_estimate = 0;
491
492
1.16k
  uint64_t color[3] = {};
493
4.66k
  for (int c = 0; c < 3; ++c) {
494
115k
    for (int i = 0; i < 32; ++i) {
495
111k
      color[c] += static_cast<uint64_t>(
496
111k
          std::ceil(inv_quant * std::abs(color_dct_[c][i])));
497
111k
    }
498
3.49k
  }
499
1.16k
  color[0] += static_cast<uint64_t>(std::ceil(std::abs(y_to_x))) * color[1];
500
1.16k
  color[2] += static_cast<uint64_t>(std::ceil(std::abs(y_to_b))) * color[1];
501
  // This is not taking kChannelWeight into account, but up to constant factors
502
  // it gives an indication of the influence of the color values on the area
503
  // that will need to be rendered.
504
1.16k
  const uint64_t max_color = std::max({color[1], color[0], color[2]});
505
1.16k
  uint64_t logcolor =
506
1.16k
      std::max(kOne, static_cast<uint64_t>(CeilLog2Nonzero(kOne + max_color)));
507
508
1.16k
  const float weight_limit =
509
1.16k
      std::ceil(std::sqrt((static_cast<float>(area_limit) / logcolor) /
510
1.16k
                          std::max<size_t>(1, manhattan_distance)));
511
512
38.4k
  for (int i = 0; i < 32; ++i) {
513
37.3k
    const float inv_dct_factor = (i == 0) ? kSqrt0_5 : 1.0f;
514
37.3k
    result.sigma_dct[i] =
515
37.3k
        sigma_dct_[i] * inv_dct_factor * kChannelWeight[3] * inv_quant;
516
    // If we include the factor kChannelWeight[3]=.3333f here, we get a
517
    // realistic area estimate. We leave it out to simplify the calculations,
518
    // and understand that this way we underestimate the area by a factor of
519
    // 1/(0.3333*0.3333). This is taken into account in the limits below.
520
37.3k
    float weight_f = std::ceil(inv_quant * std::abs(sigma_dct_[i]));
521
37.3k
    uint64_t weight =
522
37.3k
        static_cast<uint64_t>(std::min(weight_limit, std::max(1.0f, weight_f)));
523
37.3k
    width_estimate += weight * weight * logcolor;
524
37.3k
  }
525
1.16k
  *total_estimated_area_reached += (width_estimate * manhattan_distance);
526
1.16k
  if (*total_estimated_area_reached > area_limit) {
527
1
    return JXL_FAILURE("Too large total_estimated_area eached: %" PRIu64,
528
1
                       *total_estimated_area_reached);
529
1
  }
530
531
1.16k
  return true;
532
1.16k
}
533
534
Status QuantizedSpline::Decode(const std::vector<uint8_t>& context_map,
535
                               ANSSymbolReader* const decoder,
536
                               BitReader* const br,
537
                               const size_t max_control_points,
538
1.17k
                               size_t* total_num_control_points) {
539
1.17k
  const size_t num_control_points =
540
1.17k
      decoder->ReadHybridUint(kNumControlPointsContext, br, context_map);
541
1.17k
  if (num_control_points > max_control_points) {
542
0
    return JXL_FAILURE("Too many control points: %" PRIuS, num_control_points);
543
0
  }
544
1.17k
  *total_num_control_points += num_control_points;
545
1.17k
  if (*total_num_control_points > max_control_points) {
546
0
    return JXL_FAILURE("Too many control points: %" PRIuS,
547
0
                       *total_num_control_points);
548
0
  }
549
1.17k
  control_points_.resize(num_control_points);
550
  // Maximal image dimension.
551
1.17k
  constexpr int64_t kDeltaLimit = 1u << 30;
552
4.44k
  for (std::pair<int64_t, int64_t>& control_point : control_points_) {
553
4.44k
    control_point.first = UnpackSigned(
554
4.44k
        decoder->ReadHybridUint(kControlPointsContext, br, context_map));
555
4.44k
    control_point.second = UnpackSigned(
556
4.44k
        decoder->ReadHybridUint(kControlPointsContext, br, context_map));
557
    // Check delta-deltas are not outrageous; it is not in spec, but there is
558
    // no reason to allow larger values.
559
4.44k
    if ((control_point.first >= kDeltaLimit) ||
560
4.44k
        (control_point.first <= -kDeltaLimit) ||
561
4.44k
        (control_point.second >= kDeltaLimit) ||
562
4.44k
        (control_point.second <= -kDeltaLimit)) {
563
0
      return JXL_FAILURE("Spline delta-delta is out of bounds");
564
0
    }
565
4.44k
  }
566
567
4.69k
  const auto decode_dct = [decoder, br, &context_map](int dct[32]) -> Status {
568
4.69k
    constexpr int kWeirdNumber = std::numeric_limits<int>::min();
569
154k
    for (int i = 0; i < 32; ++i) {
570
150k
      dct[i] =
571
150k
          UnpackSigned(decoder->ReadHybridUint(kDCTContext, br, context_map));
572
150k
      if (dct[i] == kWeirdNumber) {
573
0
        return JXL_FAILURE("The weird number in spline DCT");
574
0
      }
575
150k
    }
576
4.69k
    return true;
577
4.69k
  };
578
3.52k
  for (auto& dct : color_dct_) {
579
3.52k
    JXL_RETURN_IF_ERROR(decode_dct(dct));
580
3.52k
  }
581
1.17k
  JXL_RETURN_IF_ERROR(decode_dct(sigma_dct_));
582
1.17k
  return true;
583
1.17k
}
584
585
0
void Splines::SetData(SplineDataView data) {
586
0
  Clear();
587
0
  data_ = data;
588
0
}
589
590
31.7k
void Splines::Clear() {
591
31.7k
  quantization_adjustment_ = 0;
592
31.7k
  splines_storage_.clear();
593
31.7k
  starting_points_storage_.clear();
594
31.7k
  data_ = {};
595
31.7k
  segments_.clear();
596
31.7k
  segment_indices_ = AlignedMemory();
597
31.7k
  segment_y_start_ = AlignedMemory();
598
31.7k
}
599
600
1.04k
Status Splines::Decode(jxl::BitReader* br, const size_t num_pixels) {
601
1.04k
  std::vector<uint8_t> context_map;
602
1.04k
  ANSCode code;
603
1.04k
  JXL_RETURN_IF_ERROR(DecodeHistograms(memory_manager_, br, kNumSplineContexts,
604
1.04k
                                       &code, &context_map));
605
2.09k
  JXL_ASSIGN_OR_RETURN(ANSSymbolReader decoder,
606
2.09k
                       ANSSymbolReader::Create(&code, br));
607
2.09k
  size_t num_splines =
608
2.09k
      decoder.ReadHybridUint(kNumSplinesContext, br, context_map);
609
2.09k
  size_t max_control_points = std::min(
610
2.09k
      kMaxNumControlPoints, num_pixels / kMaxNumControlPointsPerPixelRatio);
611
2.09k
  if (num_splines > max_control_points ||
612
1.04k
      num_splines + 1 > max_control_points) {
613
0
    return JXL_FAILURE("Too many splines: %" PRIuS, num_splines);
614
0
  }
615
1.04k
  num_splines++;
616
1.04k
  JXL_RETURN_IF_ERROR(DecodeAllStartingPoints(
617
1.04k
      &starting_points_storage_, br, &decoder, context_map, num_splines));
618
619
1.04k
  quantization_adjustment_ = UnpackSigned(
620
1.04k
      decoder.ReadHybridUint(kQuantizationAdjustmentContext, br, context_map));
621
622
1.04k
  splines_storage_.clear();
623
1.04k
  splines_storage_.reserve(num_splines);
624
1.04k
  size_t num_control_points = num_splines;
625
2.21k
  for (size_t i = 0; i < num_splines; ++i) {
626
1.17k
    QuantizedSpline spline;
627
1.17k
    JXL_RETURN_IF_ERROR(spline.Decode(context_map, &decoder, br,
628
1.17k
                                      max_control_points, &num_control_points));
629
1.17k
    splines_storage_.push_back(std::move(spline));
630
1.17k
  }
631
632
1.04k
  JXL_RETURN_IF_ERROR(decoder.CheckANSFinalState());
633
634
1.04k
  data_ = SplineDataView{Span<const QuantizedSpline>(splines_storage_),
635
1.04k
                         Span<const Spline::Point>(starting_points_storage_)};
636
637
1.04k
  if (!HasAny()) {
638
0
    return JXL_FAILURE("Decoded splines but got none");
639
0
  }
640
641
1.04k
  return true;
642
1.04k
}
643
644
0
void Splines::AddTo(Image3F* const opsin, const Rect& opsin_rect) const {
645
0
  Apply</*add=*/true>(opsin, opsin_rect);
646
0
}
647
void Splines::AddToRow(float* JXL_RESTRICT row_x, float* JXL_RESTRICT row_y,
648
                       float* JXL_RESTRICT row_b, size_t y, size_t x0,
649
42.1k
                       size_t x1) const {
650
42.1k
  ApplyToRow</*add=*/true>(row_x, row_y, row_b, y, x0, x1);
651
42.1k
}
652
653
0
void Splines::SubtractFrom(Image3F* const opsin) const {
654
0
  Apply</*add=*/false>(opsin, Rect(*opsin));
655
0
}
656
657
Status Splines::InitializeDrawCache(const size_t image_xsize,
658
                                    const size_t image_ysize,
659
1.03k
                                    const ColorCorrelation& color_correlation) {
660
  // TODO(veluca): avoid storing segments that are entirely outside image
661
  // boundaries.
662
1.03k
  segments_.clear();
663
1.03k
  segment_indices_ = AlignedMemory();
664
1.03k
  segment_y_start_ = AlignedMemory();
665
1.03k
  std::vector<SplineSegmentSpan> segments_spans;
666
1.03k
  std::vector<Spline::Point> intermediate_points;
667
1.03k
  uint64_t total_estimated_area_reached = 0;
668
1.03k
  std::vector<Spline> splines;
669
2.20k
  for (size_t i = 0; i < data_.splines.size(); ++i) {
670
1.16k
    Spline spline;
671
1.16k
    JXL_RETURN_IF_ERROR(data_.splines[i].Dequantize(
672
1.16k
        data_.starting_points[i], quantization_adjustment_,
673
1.16k
        color_correlation.YtoXRatio(0), color_correlation.YtoBRatio(0),
674
1.16k
        image_xsize * image_ysize, &total_estimated_area_reached, spline));
675
1.16k
    if (std::adjacent_find(spline.control_points.begin(),
676
1.16k
                           spline.control_points.end()) !=
677
1.16k
        spline.control_points.end()) {
678
      // Otherwise division by zero might occur. Once control points coincide,
679
      // the direction of curve is undefined...
680
0
      return JXL_FAILURE(
681
0
          "identical successive control points in spline %" PRIuS, i);
682
0
    }
683
1.16k
    splines.push_back(spline);
684
1.16k
  }
685
  // TODO(firsching) Change this into a JXL_FAILURE for level 5 codestreams.
686
1.03k
  if (total_estimated_area_reached >
687
1.03k
      std::min(
688
1.03k
          (8 * image_xsize * image_ysize + (static_cast<uint64_t>(1) << 25)),
689
1.03k
          (static_cast<uint64_t>(1) << 30))) {
690
0
    JXL_WARNING(
691
0
        "Large total_estimated_area_reached, expect slower decoding: %" PRIu64,
692
0
        total_estimated_area_reached);
693
0
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
694
0
    return JXL_FAILURE("Total spline area is too large");
695
0
#endif
696
0
  }
697
698
1.16k
  for (Spline& spline : splines) {
699
1.16k
    std::vector<std::pair<Spline::Point, float>> points_to_draw;
700
219k
    auto add_point = [&](const Spline::Point& point, const float multiplier) {
701
219k
      points_to_draw.emplace_back(point, multiplier);
702
219k
    };
703
1.16k
    intermediate_points.clear();
704
1.16k
    DrawCentripetalCatmullRomSpline(spline.control_points, intermediate_points);
705
1.16k
    JXL_RETURN_IF_ERROR(
706
1.16k
        ForEachEquallySpacedPoint(intermediate_points, add_point));
707
1.16k
    const float arc_length =
708
1.16k
        (points_to_draw.size() - 2) * kDesiredRenderingDistance +
709
1.16k
        points_to_draw.back().second;
710
1.16k
    if (arc_length <= 0.f) {
711
      // This spline wouldn't have any effect.
712
174
      continue;
713
174
    }
714
991
    HWY_DYNAMIC_DISPATCH(SegmentsFromPoints)
715
991
    (image_ysize, spline, points_to_draw, arc_length, segments_,
716
991
     segments_spans);
717
991
  }
718
719
1.03k
  size_t segment_y_start_num_bytes = (image_ysize + 2) * sizeof(ptrdiff_t);
720
1.03k
  JXL_ASSIGN_OR_RETURN(
721
1.03k
      segment_y_start_,
722
1.03k
      AlignedMemory::Create(memory_manager_, segment_y_start_num_bytes));
723
1.03k
  ptrdiff_t* segment_y_start = segment_y_start_.address<ptrdiff_t>();
724
1.03k
  memset(segment_y_start, 0, segment_y_start_num_bytes);
725
1.03k
  ptrdiff_t* population = segment_y_start + 1;
726
170k
  for (const auto& segment_span : segments_spans) {
727
170k
    population[segment_span.start]++;
728
170k
    population[segment_span.end]--;
729
170k
  }
730
  // Turn to cumulative.
731
1.03k
  size_t total = 0;
732
1.03k
  ptrdiff_t coverage = 0;
733
77.4k
  for (size_t y = 0; y < image_ysize; y++) {
734
76.3k
    if (population[y] < 0) {
735
10.8k
      JXL_ENSURE(coverage >= -population[y]);
736
10.8k
    }
737
76.3k
    coverage += population[y];
738
76.3k
    population[y] = total;
739
76.3k
    total += coverage;
740
76.3k
  }
741
  // population[0] == 0 (that is segment_y_start[1])
742
  // We are going to place segments using population[y] as index for elements
743
  // of y-th line (and increment them); that way final value of population[y]
744
  // is the staring index for (y+1)-th line. Thus segment_y_start will contain
745
  // indices without an offset.
746
1.03k
  JXL_ASSIGN_OR_RETURN(
747
1.03k
      segment_indices_,
748
1.03k
      AlignedMemory::Create(memory_manager_, total * sizeof(size_t)));
749
1.03k
  size_t* segment_indices = segment_indices_.address<size_t>();
750
171k
  for (size_t i = 0; i < segments_.size(); ++i) {
751
170k
    const auto& segment_span = segments_spans[i];
752
1.78M
    for (size_t y = segment_span.start; y < segment_span.end; y++) {
753
1.61M
      segment_indices[population[y]++] = i;
754
1.61M
    }
755
170k
  }
756
757
1.03k
  return true;
758
1.03k
}
759
760
template <bool add>
761
void Splines::ApplyToRow(float* JXL_RESTRICT row_x, float* JXL_RESTRICT row_y,
762
                         float* JXL_RESTRICT row_b, size_t y, size_t x0,
763
42.1k
                         size_t x1) const {
764
42.1k
  if (segments_.empty()) return;
765
37.5k
  HWY_DYNAMIC_DISPATCH(DrawSegments)
766
37.5k
  (row_x, row_y, row_b, y, x0, x1, add, segments_.data(),
767
37.5k
   segment_indices_.address<size_t>(), segment_y_start_.address<ptrdiff_t>());
768
37.5k
}
void jxl::Splines::ApplyToRow<true>(float*, float*, float*, unsigned long, unsigned long, unsigned long) const
Line
Count
Source
763
42.1k
                         size_t x1) const {
764
42.1k
  if (segments_.empty()) return;
765
37.5k
  HWY_DYNAMIC_DISPATCH(DrawSegments)
766
37.5k
  (row_x, row_y, row_b, y, x0, x1, add, segments_.data(),
767
37.5k
   segment_indices_.address<size_t>(), segment_y_start_.address<ptrdiff_t>());
768
37.5k
}
Unexecuted instantiation: void jxl::Splines::ApplyToRow<false>(float*, float*, float*, unsigned long, unsigned long, unsigned long) const
769
770
template <bool add>
771
0
void Splines::Apply(Image3F* const opsin, const Rect& opsin_rect) const {
772
0
  if (segments_.empty()) return;
773
0
  const size_t y0 = opsin_rect.y0();
774
0
  const size_t x0 = opsin_rect.x0();
775
0
  const size_t x1 = opsin_rect.x1();
776
0
  for (size_t y = 0; y < opsin_rect.ysize(); y++) {
777
0
    ApplyToRow<add>(opsin->PlaneRow(0, y0 + y) + x0,
778
0
                    opsin->PlaneRow(1, y0 + y) + x0,
779
0
                    opsin->PlaneRow(2, y0 + y) + x0, y0 + y, x0, x1);
780
0
  }
781
0
}
Unexecuted instantiation: void jxl::Splines::Apply<true>(jxl::Image3<float>*, jxl::RectT<unsigned long> const&) const
Unexecuted instantiation: void jxl::Splines::Apply<false>(jxl::Image3<float>*, jxl::RectT<unsigned long> const&) const
782
783
}  // namespace jxl
784
#endif  // HWY_ONCE