Coverage Report

Created: 2026-07-20 07:19

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjxl/lib/jxl/compressed_dc.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/compressed_dc.h"
7
8
#include <jxl/memory_manager.h>
9
10
#include <algorithm>
11
#include <cstdint>
12
#include <cstdlib>
13
#include <cstring>
14
#include <vector>
15
16
#include "lib/jxl/ac_context.h"
17
#include "lib/jxl/frame_header.h"
18
#include "lib/jxl/modular/modular_image.h"
19
20
#undef HWY_TARGET_INCLUDE
21
#define HWY_TARGET_INCLUDE "lib/jxl/compressed_dc.cc"
22
#include <hwy/foreach_target.h>
23
#include <hwy/highway.h>
24
25
#include "lib/jxl/base/compiler_specific.h"
26
#include "lib/jxl/base/data_parallel.h"
27
#include "lib/jxl/base/rect.h"
28
#include "lib/jxl/base/status.h"
29
#include "lib/jxl/image.h"
30
HWY_BEFORE_NAMESPACE();
31
namespace jxl {
32
namespace HWY_NAMESPACE {
33
34
using D = HWY_FULL(float);
35
using DScalar = HWY_CAPPED(float, 1);
36
37
// These templates are not found via ADL.
38
using hwy::HWY_NAMESPACE::Abs;
39
using hwy::HWY_NAMESPACE::Add;
40
using hwy::HWY_NAMESPACE::Div;
41
using hwy::HWY_NAMESPACE::Max;
42
using hwy::HWY_NAMESPACE::Mul;
43
using hwy::HWY_NAMESPACE::MulAdd;
44
using hwy::HWY_NAMESPACE::Rebind;
45
using hwy::HWY_NAMESPACE::Sub;
46
using hwy::HWY_NAMESPACE::Vec;
47
using hwy::HWY_NAMESPACE::ZeroIfNegative;
48
49
// TODO(veluca): optimize constants.
50
const float w1 = 0.20345139757231578f;
51
const float w2 = 0.0334829185968739f;
52
const float w0 = 1.0f - 4.0f * (w1 + w2);
53
54
template <class V>
55
4.23M
V MaxWorkaround(V a, V b) {
56
#if (HWY_TARGET == HWY_AVX3) && HWY_COMPILER_CLANG <= 800
57
  // Prevents "Do not know how to split the result of this operator" error
58
  return IfThenElse(a > b, a, b);
59
#else
60
4.23M
  return Max(a, b);
61
4.23M
#endif
62
4.23M
}
Unexecuted instantiation: hwy::N_SSE4::Vec128<float, 1ul> jxl::N_SSE4::MaxWorkaround<hwy::N_SSE4::Vec128<float, 1ul> >(hwy::N_SSE4::Vec128<float, 1ul>, hwy::N_SSE4::Vec128<float, 1ul>)
Unexecuted instantiation: hwy::N_SSE4::Vec128<float, 4ul> jxl::N_SSE4::MaxWorkaround<hwy::N_SSE4::Vec128<float, 4ul> >(hwy::N_SSE4::Vec128<float, 4ul>, hwy::N_SSE4::Vec128<float, 4ul>)
hwy::N_AVX2::Vec128<float, 1ul> jxl::N_AVX2::MaxWorkaround<hwy::N_AVX2::Vec128<float, 1ul> >(hwy::N_AVX2::Vec128<float, 1ul>, hwy::N_AVX2::Vec128<float, 1ul>)
Line
Count
Source
55
2.81M
V MaxWorkaround(V a, V b) {
56
#if (HWY_TARGET == HWY_AVX3) && HWY_COMPILER_CLANG <= 800
57
  // Prevents "Do not know how to split the result of this operator" error
58
  return IfThenElse(a > b, a, b);
59
#else
60
2.81M
  return Max(a, b);
61
2.81M
#endif
62
2.81M
}
hwy::N_AVX2::Vec256<float> jxl::N_AVX2::MaxWorkaround<hwy::N_AVX2::Vec256<float> >(hwy::N_AVX2::Vec256<float>, hwy::N_AVX2::Vec256<float>)
Line
Count
Source
55
1.41M
V MaxWorkaround(V a, V b) {
56
#if (HWY_TARGET == HWY_AVX3) && HWY_COMPILER_CLANG <= 800
57
  // Prevents "Do not know how to split the result of this operator" error
58
  return IfThenElse(a > b, a, b);
59
#else
60
1.41M
  return Max(a, b);
61
1.41M
#endif
62
1.41M
}
Unexecuted instantiation: hwy::N_SSE2::Vec128<float, 1ul> jxl::N_SSE2::MaxWorkaround<hwy::N_SSE2::Vec128<float, 1ul> >(hwy::N_SSE2::Vec128<float, 1ul>, hwy::N_SSE2::Vec128<float, 1ul>)
Unexecuted instantiation: hwy::N_SSE2::Vec128<float, 4ul> jxl::N_SSE2::MaxWorkaround<hwy::N_SSE2::Vec128<float, 4ul> >(hwy::N_SSE2::Vec128<float, 4ul>, hwy::N_SSE2::Vec128<float, 4ul>)
63
64
template <typename D>
65
JXL_INLINE void ComputePixelChannel(const D d, const float dc_factor,
66
                                    const float* JXL_RESTRICT row_top,
67
                                    const float* JXL_RESTRICT row,
68
                                    const float* JXL_RESTRICT row_bottom,
69
                                    Vec<D>* JXL_RESTRICT mc,
70
                                    Vec<D>* JXL_RESTRICT sm,
71
4.23M
                                    Vec<D>* JXL_RESTRICT gap, size_t x) {
72
4.23M
  const auto tl = LoadU(d, row_top + x - 1);
73
4.23M
  const auto tc = Load(d, row_top + x);
74
4.23M
  const auto tr = LoadU(d, row_top + x + 1);
75
76
4.23M
  const auto ml = LoadU(d, row + x - 1);
77
4.23M
  *mc = Load(d, row + x);
78
4.23M
  const auto mr = LoadU(d, row + x + 1);
79
80
4.23M
  const auto bl = LoadU(d, row_bottom + x - 1);
81
4.23M
  const auto bc = Load(d, row_bottom + x);
82
4.23M
  const auto br = LoadU(d, row_bottom + x + 1);
83
84
4.23M
  const auto w_center = Set(d, w0);
85
4.23M
  const auto w_side = Set(d, w1);
86
4.23M
  const auto w_corner = Set(d, w2);
87
88
4.23M
  const auto corner = Add(Add(tl, tr), Add(bl, br));
89
4.23M
  const auto side = Add(Add(ml, mr), Add(tc, bc));
90
4.23M
  *sm = MulAdd(corner, w_corner, MulAdd(side, w_side, Mul(*mc, w_center)));
91
92
4.23M
  const auto dc_quant = Set(d, dc_factor);
93
4.23M
  *gap = MaxWorkaround(*gap, Abs(Div(Sub(*mc, *sm), dc_quant)));
94
4.23M
}
Unexecuted instantiation: void jxl::N_SSE4::ComputePixelChannel<hwy::N_SSE4::Simd<float, 1ul, 0> >(hwy::N_SSE4::Simd<float, 1ul, 0>, float, float const*, float const*, float const*, decltype (Zero((hwy::N_SSE4::Simd<float, 1ul, 0>)()))*, decltype (Zero((hwy::N_SSE4::Simd<float, 1ul, 0>)()))*, decltype (Zero((hwy::N_SSE4::Simd<float, 1ul, 0>)()))*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE4::ComputePixelChannel<hwy::N_SSE4::Simd<float, 4ul, 0> >(hwy::N_SSE4::Simd<float, 4ul, 0>, float, float const*, float const*, float const*, decltype (Zero((hwy::N_SSE4::Simd<float, 4ul, 0>)()))*, decltype (Zero((hwy::N_SSE4::Simd<float, 4ul, 0>)()))*, decltype (Zero((hwy::N_SSE4::Simd<float, 4ul, 0>)()))*, unsigned long)
void jxl::N_AVX2::ComputePixelChannel<hwy::N_AVX2::Simd<float, 1ul, 0> >(hwy::N_AVX2::Simd<float, 1ul, 0>, float, float const*, float const*, float const*, decltype (Zero((hwy::N_AVX2::Simd<float, 1ul, 0>)()))*, decltype (Zero((hwy::N_AVX2::Simd<float, 1ul, 0>)()))*, decltype (Zero((hwy::N_AVX2::Simd<float, 1ul, 0>)()))*, unsigned long)
Line
Count
Source
71
2.81M
                                    Vec<D>* JXL_RESTRICT gap, size_t x) {
72
2.81M
  const auto tl = LoadU(d, row_top + x - 1);
73
2.81M
  const auto tc = Load(d, row_top + x);
74
2.81M
  const auto tr = LoadU(d, row_top + x + 1);
75
76
2.81M
  const auto ml = LoadU(d, row + x - 1);
77
2.81M
  *mc = Load(d, row + x);
78
2.81M
  const auto mr = LoadU(d, row + x + 1);
79
80
2.81M
  const auto bl = LoadU(d, row_bottom + x - 1);
81
2.81M
  const auto bc = Load(d, row_bottom + x);
82
2.81M
  const auto br = LoadU(d, row_bottom + x + 1);
83
84
2.81M
  const auto w_center = Set(d, w0);
85
2.81M
  const auto w_side = Set(d, w1);
86
2.81M
  const auto w_corner = Set(d, w2);
87
88
2.81M
  const auto corner = Add(Add(tl, tr), Add(bl, br));
89
2.81M
  const auto side = Add(Add(ml, mr), Add(tc, bc));
90
2.81M
  *sm = MulAdd(corner, w_corner, MulAdd(side, w_side, Mul(*mc, w_center)));
91
92
2.81M
  const auto dc_quant = Set(d, dc_factor);
93
2.81M
  *gap = MaxWorkaround(*gap, Abs(Div(Sub(*mc, *sm), dc_quant)));
94
2.81M
}
void jxl::N_AVX2::ComputePixelChannel<hwy::N_AVX2::Simd<float, 8ul, 0> >(hwy::N_AVX2::Simd<float, 8ul, 0>, float, float const*, float const*, float const*, decltype (Zero((hwy::N_AVX2::Simd<float, 8ul, 0>)()))*, decltype (Zero((hwy::N_AVX2::Simd<float, 8ul, 0>)()))*, decltype (Zero((hwy::N_AVX2::Simd<float, 8ul, 0>)()))*, unsigned long)
Line
Count
Source
71
1.41M
                                    Vec<D>* JXL_RESTRICT gap, size_t x) {
72
1.41M
  const auto tl = LoadU(d, row_top + x - 1);
73
1.41M
  const auto tc = Load(d, row_top + x);
74
1.41M
  const auto tr = LoadU(d, row_top + x + 1);
75
76
1.41M
  const auto ml = LoadU(d, row + x - 1);
77
1.41M
  *mc = Load(d, row + x);
78
1.41M
  const auto mr = LoadU(d, row + x + 1);
79
80
1.41M
  const auto bl = LoadU(d, row_bottom + x - 1);
81
1.41M
  const auto bc = Load(d, row_bottom + x);
82
1.41M
  const auto br = LoadU(d, row_bottom + x + 1);
83
84
1.41M
  const auto w_center = Set(d, w0);
85
1.41M
  const auto w_side = Set(d, w1);
86
1.41M
  const auto w_corner = Set(d, w2);
87
88
1.41M
  const auto corner = Add(Add(tl, tr), Add(bl, br));
89
1.41M
  const auto side = Add(Add(ml, mr), Add(tc, bc));
90
1.41M
  *sm = MulAdd(corner, w_corner, MulAdd(side, w_side, Mul(*mc, w_center)));
91
92
1.41M
  const auto dc_quant = Set(d, dc_factor);
93
1.41M
  *gap = MaxWorkaround(*gap, Abs(Div(Sub(*mc, *sm), dc_quant)));
94
1.41M
}
Unexecuted instantiation: void jxl::N_SSE2::ComputePixelChannel<hwy::N_SSE2::Simd<float, 1ul, 0> >(hwy::N_SSE2::Simd<float, 1ul, 0>, float, float const*, float const*, float const*, decltype (Zero((hwy::N_SSE2::Simd<float, 1ul, 0>)()))*, decltype (Zero((hwy::N_SSE2::Simd<float, 1ul, 0>)()))*, decltype (Zero((hwy::N_SSE2::Simd<float, 1ul, 0>)()))*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE2::ComputePixelChannel<hwy::N_SSE2::Simd<float, 4ul, 0> >(hwy::N_SSE2::Simd<float, 4ul, 0>, float, float const*, float const*, float const*, decltype (Zero((hwy::N_SSE2::Simd<float, 4ul, 0>)()))*, decltype (Zero((hwy::N_SSE2::Simd<float, 4ul, 0>)()))*, decltype (Zero((hwy::N_SSE2::Simd<float, 4ul, 0>)()))*, unsigned long)
95
96
template <typename D>
97
JXL_INLINE void ComputePixel(
98
    const float* JXL_RESTRICT dc_factors,
99
    const float* JXL_RESTRICT* JXL_RESTRICT rows_top,
100
    const float* JXL_RESTRICT* JXL_RESTRICT rows,
101
    const float* JXL_RESTRICT* JXL_RESTRICT rows_bottom,
102
1.41M
    float* JXL_RESTRICT* JXL_RESTRICT out_rows, size_t x) {
103
1.41M
  const D d;
104
1.41M
  auto mc_x = Undefined(d);
105
1.41M
  auto mc_y = Undefined(d);
106
1.41M
  auto mc_b = Undefined(d);
107
1.41M
  auto sm_x = Undefined(d);
108
1.41M
  auto sm_y = Undefined(d);
109
1.41M
  auto sm_b = Undefined(d);
110
1.41M
  auto gap = Set(d, 0.5f);
111
1.41M
  ComputePixelChannel(d, dc_factors[0], rows_top[0], rows[0], rows_bottom[0],
112
1.41M
                      &mc_x, &sm_x, &gap, x);
113
1.41M
  ComputePixelChannel(d, dc_factors[1], rows_top[1], rows[1], rows_bottom[1],
114
1.41M
                      &mc_y, &sm_y, &gap, x);
115
1.41M
  ComputePixelChannel(d, dc_factors[2], rows_top[2], rows[2], rows_bottom[2],
116
1.41M
                      &mc_b, &sm_b, &gap, x);
117
1.41M
  auto factor = MulAdd(Set(d, -4.0f), gap, Set(d, 3.0f));
118
1.41M
  factor = ZeroIfNegative(factor);
119
120
1.41M
  auto out = MulAdd(Sub(sm_x, mc_x), factor, mc_x);
121
1.41M
  Store(out, d, out_rows[0] + x);
122
1.41M
  out = MulAdd(Sub(sm_y, mc_y), factor, mc_y);
123
1.41M
  Store(out, d, out_rows[1] + x);
124
1.41M
  out = MulAdd(Sub(sm_b, mc_b), factor, mc_b);
125
1.41M
  Store(out, d, out_rows[2] + x);
126
1.41M
}
Unexecuted instantiation: void jxl::N_SSE4::ComputePixel<hwy::N_SSE4::Simd<float, 1ul, 0> >(float const*, float const* restrict*, float const* restrict*, float const* restrict*, float* restrict*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE4::ComputePixel<hwy::N_SSE4::Simd<float, 4ul, 0> >(float const*, float const* restrict*, float const* restrict*, float const* restrict*, float* restrict*, unsigned long)
void jxl::N_AVX2::ComputePixel<hwy::N_AVX2::Simd<float, 1ul, 0> >(float const*, float const* restrict*, float const* restrict*, float const* restrict*, float* restrict*, unsigned long)
Line
Count
Source
102
938k
    float* JXL_RESTRICT* JXL_RESTRICT out_rows, size_t x) {
103
938k
  const D d;
104
938k
  auto mc_x = Undefined(d);
105
938k
  auto mc_y = Undefined(d);
106
938k
  auto mc_b = Undefined(d);
107
938k
  auto sm_x = Undefined(d);
108
938k
  auto sm_y = Undefined(d);
109
938k
  auto sm_b = Undefined(d);
110
938k
  auto gap = Set(d, 0.5f);
111
938k
  ComputePixelChannel(d, dc_factors[0], rows_top[0], rows[0], rows_bottom[0],
112
938k
                      &mc_x, &sm_x, &gap, x);
113
938k
  ComputePixelChannel(d, dc_factors[1], rows_top[1], rows[1], rows_bottom[1],
114
938k
                      &mc_y, &sm_y, &gap, x);
115
938k
  ComputePixelChannel(d, dc_factors[2], rows_top[2], rows[2], rows_bottom[2],
116
938k
                      &mc_b, &sm_b, &gap, x);
117
938k
  auto factor = MulAdd(Set(d, -4.0f), gap, Set(d, 3.0f));
118
938k
  factor = ZeroIfNegative(factor);
119
120
938k
  auto out = MulAdd(Sub(sm_x, mc_x), factor, mc_x);
121
938k
  Store(out, d, out_rows[0] + x);
122
938k
  out = MulAdd(Sub(sm_y, mc_y), factor, mc_y);
123
938k
  Store(out, d, out_rows[1] + x);
124
938k
  out = MulAdd(Sub(sm_b, mc_b), factor, mc_b);
125
938k
  Store(out, d, out_rows[2] + x);
126
938k
}
void jxl::N_AVX2::ComputePixel<hwy::N_AVX2::Simd<float, 8ul, 0> >(float const*, float const* restrict*, float const* restrict*, float const* restrict*, float* restrict*, unsigned long)
Line
Count
Source
102
471k
    float* JXL_RESTRICT* JXL_RESTRICT out_rows, size_t x) {
103
471k
  const D d;
104
471k
  auto mc_x = Undefined(d);
105
471k
  auto mc_y = Undefined(d);
106
471k
  auto mc_b = Undefined(d);
107
471k
  auto sm_x = Undefined(d);
108
471k
  auto sm_y = Undefined(d);
109
471k
  auto sm_b = Undefined(d);
110
471k
  auto gap = Set(d, 0.5f);
111
471k
  ComputePixelChannel(d, dc_factors[0], rows_top[0], rows[0], rows_bottom[0],
112
471k
                      &mc_x, &sm_x, &gap, x);
113
471k
  ComputePixelChannel(d, dc_factors[1], rows_top[1], rows[1], rows_bottom[1],
114
471k
                      &mc_y, &sm_y, &gap, x);
115
471k
  ComputePixelChannel(d, dc_factors[2], rows_top[2], rows[2], rows_bottom[2],
116
471k
                      &mc_b, &sm_b, &gap, x);
117
471k
  auto factor = MulAdd(Set(d, -4.0f), gap, Set(d, 3.0f));
118
471k
  factor = ZeroIfNegative(factor);
119
120
471k
  auto out = MulAdd(Sub(sm_x, mc_x), factor, mc_x);
121
471k
  Store(out, d, out_rows[0] + x);
122
471k
  out = MulAdd(Sub(sm_y, mc_y), factor, mc_y);
123
471k
  Store(out, d, out_rows[1] + x);
124
471k
  out = MulAdd(Sub(sm_b, mc_b), factor, mc_b);
125
471k
  Store(out, d, out_rows[2] + x);
126
471k
}
Unexecuted instantiation: void jxl::N_SSE2::ComputePixel<hwy::N_SSE2::Simd<float, 1ul, 0> >(float const*, float const* restrict*, float const* restrict*, float const* restrict*, float* restrict*, unsigned long)
Unexecuted instantiation: void jxl::N_SSE2::ComputePixel<hwy::N_SSE2::Simd<float, 4ul, 0> >(float const*, float const* restrict*, float const* restrict*, float const* restrict*, float* restrict*, unsigned long)
127
128
Status AdaptiveDCSmoothing(JxlMemoryManager* memory_manager,
129
                           const float* dc_factors, Image3F* dc,
130
6.90k
                           ThreadPool* pool) {
131
6.90k
  const size_t xsize = dc->xsize();
132
6.90k
  const size_t ysize = dc->ysize();
133
6.90k
  if (ysize <= 2 || xsize <= 2) return true;
134
135
  // TODO(veluca): use tile-based processing?
136
  // TODO(veluca): decide if changes to the y channel should be propagated to
137
  // the x and b channels through color correlation.
138
2.75k
  JXL_ENSURE(w1 + w2 < 0.25f);
139
140
5.51k
  JXL_ASSIGN_OR_RETURN(Image3F smoothed,
141
5.51k
                       Image3F::Create(memory_manager, xsize, ysize));
142
  // Fill in borders that the loop below will not. First and last are unused.
143
11.0k
  for (size_t c = 0; c < 3; c++) {
144
16.5k
    for (size_t y : {static_cast<size_t>(0), ysize - 1}) {
145
16.5k
      memcpy(smoothed.PlaneRow(c, y), dc->PlaneRow(c, y),
146
16.5k
             xsize * sizeof(float));
147
16.5k
    }
148
8.27k
  }
149
91.7k
  auto process_row = [&](const uint32_t y, size_t /*thread*/) -> Status {
150
91.7k
    const float* JXL_RESTRICT rows_top[3]{
151
91.7k
        dc->ConstPlaneRow(0, y - 1),
152
91.7k
        dc->ConstPlaneRow(1, y - 1),
153
91.7k
        dc->ConstPlaneRow(2, y - 1),
154
91.7k
    };
155
91.7k
    const float* JXL_RESTRICT rows[3] = {
156
91.7k
        dc->ConstPlaneRow(0, y),
157
91.7k
        dc->ConstPlaneRow(1, y),
158
91.7k
        dc->ConstPlaneRow(2, y),
159
91.7k
    };
160
91.7k
    const float* JXL_RESTRICT rows_bottom[3] = {
161
91.7k
        dc->ConstPlaneRow(0, y + 1),
162
91.7k
        dc->ConstPlaneRow(1, y + 1),
163
91.7k
        dc->ConstPlaneRow(2, y + 1),
164
91.7k
    };
165
91.7k
    float* JXL_RESTRICT rows_out[3] = {
166
91.7k
        smoothed.PlaneRow(0, y),
167
91.7k
        smoothed.PlaneRow(1, y),
168
91.7k
        smoothed.PlaneRow(2, y),
169
91.7k
    };
170
183k
    for (size_t x : {static_cast<size_t>(0), xsize - 1}) {
171
734k
      for (size_t c = 0; c < 3; c++) {
172
550k
        rows_out[c][x] = rows[c][x];
173
550k
      }
174
183k
    }
175
176
91.7k
    size_t x = 1;
177
    // First pixels
178
91.7k
    const size_t N = Lanes(D());
179
716k
    for (; x < std::min(N, xsize - 1); x++) {
180
625k
      ComputePixel<DScalar>(dc_factors, rows_top, rows, rows_bottom, rows_out,
181
625k
                            x);
182
625k
    }
183
    // Full vectors.
184
563k
    for (; x + N <= xsize - 1; x += N) {
185
471k
      ComputePixel<D>(dc_factors, rows_top, rows, rows_bottom, rows_out, x);
186
471k
    }
187
    // Last pixels.
188
405k
    for (; x < xsize - 1; x++) {
189
313k
      ComputePixel<DScalar>(dc_factors, rows_top, rows, rows_bottom, rows_out,
190
313k
                            x);
191
313k
    }
192
91.7k
    return true;
193
91.7k
  };
Unexecuted instantiation: compressed_dc.cc:jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0::operator()(unsigned int, unsigned long) const
compressed_dc.cc:jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0::operator()(unsigned int, unsigned long) const
Line
Count
Source
149
91.7k
  auto process_row = [&](const uint32_t y, size_t /*thread*/) -> Status {
150
91.7k
    const float* JXL_RESTRICT rows_top[3]{
151
91.7k
        dc->ConstPlaneRow(0, y - 1),
152
91.7k
        dc->ConstPlaneRow(1, y - 1),
153
91.7k
        dc->ConstPlaneRow(2, y - 1),
154
91.7k
    };
155
91.7k
    const float* JXL_RESTRICT rows[3] = {
156
91.7k
        dc->ConstPlaneRow(0, y),
157
91.7k
        dc->ConstPlaneRow(1, y),
158
91.7k
        dc->ConstPlaneRow(2, y),
159
91.7k
    };
160
91.7k
    const float* JXL_RESTRICT rows_bottom[3] = {
161
91.7k
        dc->ConstPlaneRow(0, y + 1),
162
91.7k
        dc->ConstPlaneRow(1, y + 1),
163
91.7k
        dc->ConstPlaneRow(2, y + 1),
164
91.7k
    };
165
91.7k
    float* JXL_RESTRICT rows_out[3] = {
166
91.7k
        smoothed.PlaneRow(0, y),
167
91.7k
        smoothed.PlaneRow(1, y),
168
91.7k
        smoothed.PlaneRow(2, y),
169
91.7k
    };
170
183k
    for (size_t x : {static_cast<size_t>(0), xsize - 1}) {
171
734k
      for (size_t c = 0; c < 3; c++) {
172
550k
        rows_out[c][x] = rows[c][x];
173
550k
      }
174
183k
    }
175
176
91.7k
    size_t x = 1;
177
    // First pixels
178
91.7k
    const size_t N = Lanes(D());
179
716k
    for (; x < std::min(N, xsize - 1); x++) {
180
625k
      ComputePixel<DScalar>(dc_factors, rows_top, rows, rows_bottom, rows_out,
181
625k
                            x);
182
625k
    }
183
    // Full vectors.
184
563k
    for (; x + N <= xsize - 1; x += N) {
185
471k
      ComputePixel<D>(dc_factors, rows_top, rows, rows_bottom, rows_out, x);
186
471k
    }
187
    // Last pixels.
188
405k
    for (; x < xsize - 1; x++) {
189
313k
      ComputePixel<DScalar>(dc_factors, rows_top, rows, rows_bottom, rows_out,
190
313k
                            x);
191
313k
    }
192
91.7k
    return true;
193
91.7k
  };
Unexecuted instantiation: compressed_dc.cc:jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)::$_0::operator()(unsigned int, unsigned long) const
194
5.51k
  JXL_RETURN_IF_ERROR(RunOnPool(pool, 1, ysize - 1, ThreadPool::NoInit,
195
5.51k
                                process_row, "DCSmoothingRow"));
196
2.75k
  dc->Swap(smoothed);
197
2.75k
  return true;
198
5.51k
}
Unexecuted instantiation: jxl::N_SSE4::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)
jxl::N_AVX2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)
Line
Count
Source
130
6.90k
                           ThreadPool* pool) {
131
6.90k
  const size_t xsize = dc->xsize();
132
6.90k
  const size_t ysize = dc->ysize();
133
6.90k
  if (ysize <= 2 || xsize <= 2) return true;
134
135
  // TODO(veluca): use tile-based processing?
136
  // TODO(veluca): decide if changes to the y channel should be propagated to
137
  // the x and b channels through color correlation.
138
2.75k
  JXL_ENSURE(w1 + w2 < 0.25f);
139
140
5.51k
  JXL_ASSIGN_OR_RETURN(Image3F smoothed,
141
5.51k
                       Image3F::Create(memory_manager, xsize, ysize));
142
  // Fill in borders that the loop below will not. First and last are unused.
143
11.0k
  for (size_t c = 0; c < 3; c++) {
144
16.5k
    for (size_t y : {static_cast<size_t>(0), ysize - 1}) {
145
16.5k
      memcpy(smoothed.PlaneRow(c, y), dc->PlaneRow(c, y),
146
16.5k
             xsize * sizeof(float));
147
16.5k
    }
148
8.27k
  }
149
5.51k
  auto process_row = [&](const uint32_t y, size_t /*thread*/) -> Status {
150
5.51k
    const float* JXL_RESTRICT rows_top[3]{
151
5.51k
        dc->ConstPlaneRow(0, y - 1),
152
5.51k
        dc->ConstPlaneRow(1, y - 1),
153
5.51k
        dc->ConstPlaneRow(2, y - 1),
154
5.51k
    };
155
5.51k
    const float* JXL_RESTRICT rows[3] = {
156
5.51k
        dc->ConstPlaneRow(0, y),
157
5.51k
        dc->ConstPlaneRow(1, y),
158
5.51k
        dc->ConstPlaneRow(2, y),
159
5.51k
    };
160
5.51k
    const float* JXL_RESTRICT rows_bottom[3] = {
161
5.51k
        dc->ConstPlaneRow(0, y + 1),
162
5.51k
        dc->ConstPlaneRow(1, y + 1),
163
5.51k
        dc->ConstPlaneRow(2, y + 1),
164
5.51k
    };
165
5.51k
    float* JXL_RESTRICT rows_out[3] = {
166
5.51k
        smoothed.PlaneRow(0, y),
167
5.51k
        smoothed.PlaneRow(1, y),
168
5.51k
        smoothed.PlaneRow(2, y),
169
5.51k
    };
170
5.51k
    for (size_t x : {static_cast<size_t>(0), xsize - 1}) {
171
5.51k
      for (size_t c = 0; c < 3; c++) {
172
5.51k
        rows_out[c][x] = rows[c][x];
173
5.51k
      }
174
5.51k
    }
175
176
5.51k
    size_t x = 1;
177
    // First pixels
178
5.51k
    const size_t N = Lanes(D());
179
5.51k
    for (; x < std::min(N, xsize - 1); x++) {
180
5.51k
      ComputePixel<DScalar>(dc_factors, rows_top, rows, rows_bottom, rows_out,
181
5.51k
                            x);
182
5.51k
    }
183
    // Full vectors.
184
5.51k
    for (; x + N <= xsize - 1; x += N) {
185
5.51k
      ComputePixel<D>(dc_factors, rows_top, rows, rows_bottom, rows_out, x);
186
5.51k
    }
187
    // Last pixels.
188
5.51k
    for (; x < xsize - 1; x++) {
189
5.51k
      ComputePixel<DScalar>(dc_factors, rows_top, rows, rows_bottom, rows_out,
190
5.51k
                            x);
191
5.51k
    }
192
5.51k
    return true;
193
5.51k
  };
194
5.51k
  JXL_RETURN_IF_ERROR(RunOnPool(pool, 1, ysize - 1, ThreadPool::NoInit,
195
5.51k
                                process_row, "DCSmoothingRow"));
196
2.75k
  dc->Swap(smoothed);
197
2.75k
  return true;
198
5.51k
}
Unexecuted instantiation: jxl::N_SSE2::AdaptiveDCSmoothing(JxlMemoryManagerStruct*, float const*, jxl::Image3<float>*, jxl::ThreadPool*)
199
200
// DC dequantization.
201
void DequantDC(const Rect& r, Image3F* dc, ImageB* quant_dc, const Image& in,
202
               const float* dc_factors, float mul, const float* cfl_factors,
203
               const YCbCrChromaSubsampling& chroma_subsampling,
204
7.74k
               const BlockCtxMap& bctx) {
205
7.74k
  const HWY_FULL(float) df;
206
7.74k
  const Rebind<pixel_type, HWY_FULL(float)> di;  // assumes pixel_type <= float
207
7.74k
  if (chroma_subsampling.Is444()) {
208
7.45k
    const auto fac_x = Set(df, dc_factors[0] * mul);
209
7.45k
    const auto fac_y = Set(df, dc_factors[1] * mul);
210
7.45k
    const auto fac_b = Set(df, dc_factors[2] * mul);
211
7.45k
    const auto cfl_fac_x = Set(df, cfl_factors[0]);
212
7.45k
    const auto cfl_fac_b = Set(df, cfl_factors[2]);
213
121k
    for (size_t y = 0; y < r.ysize(); y++) {
214
114k
      float* dec_row_x = r.PlaneRow(dc, 0, y);
215
114k
      float* dec_row_y = r.PlaneRow(dc, 1, y);
216
114k
      float* dec_row_b = r.PlaneRow(dc, 2, y);
217
114k
      const int32_t* quant_row_x = in.channel[1].plane.Row(y);
218
114k
      const int32_t* quant_row_y = in.channel[0].plane.Row(y);
219
114k
      const int32_t* quant_row_b = in.channel[2].plane.Row(y);
220
814k
      for (size_t x = 0; x < r.xsize(); x += Lanes(di)) {
221
700k
        const auto in_q_x = Load(di, quant_row_x + x);
222
700k
        const auto in_q_y = Load(di, quant_row_y + x);
223
700k
        const auto in_q_b = Load(di, quant_row_b + x);
224
700k
        const auto in_x = Mul(ConvertTo(df, in_q_x), fac_x);
225
700k
        const auto in_y = Mul(ConvertTo(df, in_q_y), fac_y);
226
700k
        const auto in_b = Mul(ConvertTo(df, in_q_b), fac_b);
227
700k
        Store(in_y, df, dec_row_y + x);
228
700k
        Store(MulAdd(in_y, cfl_fac_x, in_x), df, dec_row_x + x);
229
700k
        Store(MulAdd(in_y, cfl_fac_b, in_b), df, dec_row_b + x);
230
700k
      }
231
114k
    }
232
7.45k
  } else {
233
867
    for (size_t c : {1, 0, 2}) {
234
867
      Rect rect(r.x0() >> chroma_subsampling.HShift(c),
235
867
                r.y0() >> chroma_subsampling.VShift(c),
236
867
                r.xsize() >> chroma_subsampling.HShift(c),
237
867
                r.ysize() >> chroma_subsampling.VShift(c));
238
867
      const auto fac = Set(df, dc_factors[c] * mul);
239
867
      const Channel& ch = in.channel[c < 2 ? c ^ 1 : c];
240
30.5k
      for (size_t y = 0; y < rect.ysize(); y++) {
241
29.6k
        const int32_t* quant_row = ch.plane.Row(y);
242
29.6k
        float* row = rect.PlaneRow(dc, c, y);
243
234k
        for (size_t x = 0; x < rect.xsize(); x += Lanes(di)) {
244
204k
          const auto in_q = Load(di, quant_row + x);
245
204k
          const auto out = Mul(ConvertTo(df, in_q), fac);
246
204k
          Store(out, df, row + x);
247
204k
        }
248
29.6k
      }
249
867
    }
250
289
  }
251
7.74k
  if (bctx.num_dc_ctxs <= 1) {
252
127k
    for (size_t y = 0; y < r.ysize(); y++) {
253
121k
      uint8_t* qdc_row = r.Row(quant_dc, y);
254
121k
      memset(qdc_row, 0, sizeof(*qdc_row) * r.xsize());
255
121k
    }
256
6.74k
  } else {
257
998
    JXL_DASSERT(r.ysize() == 0 ||
258
998
                (r.ysize() - 1) >> chroma_subsampling.VShift(0) <
259
998
                    in.channel[1].plane.ysize());
260
998
    JXL_DASSERT(r.ysize() == 0 ||
261
998
                (r.ysize() - 1) >> chroma_subsampling.VShift(1) <
262
998
                    in.channel[0].plane.ysize());
263
998
    JXL_DASSERT(r.ysize() == 0 ||
264
998
                (r.ysize() - 1) >> chroma_subsampling.VShift(2) <
265
998
                    in.channel[2].plane.ysize());
266
6.28k
    for (size_t y = 0; y < r.ysize(); y++) {
267
5.28k
      uint8_t* qdc_row_val = r.Row(quant_dc, y);
268
5.28k
      const int32_t* quant_row_x =
269
5.28k
          in.channel[1].plane.Row(y >> chroma_subsampling.VShift(0));
270
5.28k
      const int32_t* quant_row_y =
271
5.28k
          in.channel[0].plane.Row(y >> chroma_subsampling.VShift(1));
272
5.28k
      const int32_t* quant_row_b =
273
5.28k
          in.channel[2].plane.Row(y >> chroma_subsampling.VShift(2));
274
229k
      for (size_t x = 0; x < r.xsize(); x++) {
275
224k
        int bucket_x = 0;
276
224k
        int bucket_y = 0;
277
224k
        int bucket_b = 0;
278
1.12M
        for (int t : bctx.dc_thresholds[0]) {
279
1.12M
          if (quant_row_x[x >> chroma_subsampling.HShift(0)] > t) bucket_x++;
280
1.12M
        }
281
224k
        for (int t : bctx.dc_thresholds[1]) {
282
204k
          if (quant_row_y[x >> chroma_subsampling.HShift(1)] > t) bucket_y++;
283
204k
        }
284
224k
        for (int t : bctx.dc_thresholds[2]) {
285
92.7k
          if (quant_row_b[x >> chroma_subsampling.HShift(2)] > t) bucket_b++;
286
92.7k
        }
287
224k
        int bucket = bucket_x;
288
224k
        bucket *= bctx.dc_thresholds[2].size() + 1;
289
224k
        bucket += bucket_b;
290
224k
        bucket *= bctx.dc_thresholds[1].size() + 1;
291
224k
        bucket += bucket_y;
292
224k
        qdc_row_val[x] = bucket;
293
224k
      }
294
5.28k
    }
295
998
  }
296
7.74k
}
Unexecuted instantiation: jxl::N_SSE4::DequantDC(jxl::RectT<unsigned long> const&, jxl::Image3<float>*, jxl::Plane<unsigned char>*, jxl::Image const&, float const*, float, float const*, jxl::YCbCrChromaSubsampling const&, jxl::BlockCtxMap const&)
jxl::N_AVX2::DequantDC(jxl::RectT<unsigned long> const&, jxl::Image3<float>*, jxl::Plane<unsigned char>*, jxl::Image const&, float const*, float, float const*, jxl::YCbCrChromaSubsampling const&, jxl::BlockCtxMap const&)
Line
Count
Source
204
7.74k
               const BlockCtxMap& bctx) {
205
7.74k
  const HWY_FULL(float) df;
206
7.74k
  const Rebind<pixel_type, HWY_FULL(float)> di;  // assumes pixel_type <= float
207
7.74k
  if (chroma_subsampling.Is444()) {
208
7.45k
    const auto fac_x = Set(df, dc_factors[0] * mul);
209
7.45k
    const auto fac_y = Set(df, dc_factors[1] * mul);
210
7.45k
    const auto fac_b = Set(df, dc_factors[2] * mul);
211
7.45k
    const auto cfl_fac_x = Set(df, cfl_factors[0]);
212
7.45k
    const auto cfl_fac_b = Set(df, cfl_factors[2]);
213
121k
    for (size_t y = 0; y < r.ysize(); y++) {
214
114k
      float* dec_row_x = r.PlaneRow(dc, 0, y);
215
114k
      float* dec_row_y = r.PlaneRow(dc, 1, y);
216
114k
      float* dec_row_b = r.PlaneRow(dc, 2, y);
217
114k
      const int32_t* quant_row_x = in.channel[1].plane.Row(y);
218
114k
      const int32_t* quant_row_y = in.channel[0].plane.Row(y);
219
114k
      const int32_t* quant_row_b = in.channel[2].plane.Row(y);
220
814k
      for (size_t x = 0; x < r.xsize(); x += Lanes(di)) {
221
700k
        const auto in_q_x = Load(di, quant_row_x + x);
222
700k
        const auto in_q_y = Load(di, quant_row_y + x);
223
700k
        const auto in_q_b = Load(di, quant_row_b + x);
224
700k
        const auto in_x = Mul(ConvertTo(df, in_q_x), fac_x);
225
700k
        const auto in_y = Mul(ConvertTo(df, in_q_y), fac_y);
226
700k
        const auto in_b = Mul(ConvertTo(df, in_q_b), fac_b);
227
700k
        Store(in_y, df, dec_row_y + x);
228
700k
        Store(MulAdd(in_y, cfl_fac_x, in_x), df, dec_row_x + x);
229
700k
        Store(MulAdd(in_y, cfl_fac_b, in_b), df, dec_row_b + x);
230
700k
      }
231
114k
    }
232
7.45k
  } else {
233
867
    for (size_t c : {1, 0, 2}) {
234
867
      Rect rect(r.x0() >> chroma_subsampling.HShift(c),
235
867
                r.y0() >> chroma_subsampling.VShift(c),
236
867
                r.xsize() >> chroma_subsampling.HShift(c),
237
867
                r.ysize() >> chroma_subsampling.VShift(c));
238
867
      const auto fac = Set(df, dc_factors[c] * mul);
239
867
      const Channel& ch = in.channel[c < 2 ? c ^ 1 : c];
240
30.5k
      for (size_t y = 0; y < rect.ysize(); y++) {
241
29.6k
        const int32_t* quant_row = ch.plane.Row(y);
242
29.6k
        float* row = rect.PlaneRow(dc, c, y);
243
234k
        for (size_t x = 0; x < rect.xsize(); x += Lanes(di)) {
244
204k
          const auto in_q = Load(di, quant_row + x);
245
204k
          const auto out = Mul(ConvertTo(df, in_q), fac);
246
204k
          Store(out, df, row + x);
247
204k
        }
248
29.6k
      }
249
867
    }
250
289
  }
251
7.74k
  if (bctx.num_dc_ctxs <= 1) {
252
127k
    for (size_t y = 0; y < r.ysize(); y++) {
253
121k
      uint8_t* qdc_row = r.Row(quant_dc, y);
254
121k
      memset(qdc_row, 0, sizeof(*qdc_row) * r.xsize());
255
121k
    }
256
6.74k
  } else {
257
998
    JXL_DASSERT(r.ysize() == 0 ||
258
998
                (r.ysize() - 1) >> chroma_subsampling.VShift(0) <
259
998
                    in.channel[1].plane.ysize());
260
998
    JXL_DASSERT(r.ysize() == 0 ||
261
998
                (r.ysize() - 1) >> chroma_subsampling.VShift(1) <
262
998
                    in.channel[0].plane.ysize());
263
998
    JXL_DASSERT(r.ysize() == 0 ||
264
998
                (r.ysize() - 1) >> chroma_subsampling.VShift(2) <
265
998
                    in.channel[2].plane.ysize());
266
6.28k
    for (size_t y = 0; y < r.ysize(); y++) {
267
5.28k
      uint8_t* qdc_row_val = r.Row(quant_dc, y);
268
5.28k
      const int32_t* quant_row_x =
269
5.28k
          in.channel[1].plane.Row(y >> chroma_subsampling.VShift(0));
270
5.28k
      const int32_t* quant_row_y =
271
5.28k
          in.channel[0].plane.Row(y >> chroma_subsampling.VShift(1));
272
5.28k
      const int32_t* quant_row_b =
273
5.28k
          in.channel[2].plane.Row(y >> chroma_subsampling.VShift(2));
274
229k
      for (size_t x = 0; x < r.xsize(); x++) {
275
224k
        int bucket_x = 0;
276
224k
        int bucket_y = 0;
277
224k
        int bucket_b = 0;
278
1.12M
        for (int t : bctx.dc_thresholds[0]) {
279
1.12M
          if (quant_row_x[x >> chroma_subsampling.HShift(0)] > t) bucket_x++;
280
1.12M
        }
281
224k
        for (int t : bctx.dc_thresholds[1]) {
282
204k
          if (quant_row_y[x >> chroma_subsampling.HShift(1)] > t) bucket_y++;
283
204k
        }
284
224k
        for (int t : bctx.dc_thresholds[2]) {
285
92.7k
          if (quant_row_b[x >> chroma_subsampling.HShift(2)] > t) bucket_b++;
286
92.7k
        }
287
224k
        int bucket = bucket_x;
288
224k
        bucket *= bctx.dc_thresholds[2].size() + 1;
289
224k
        bucket += bucket_b;
290
224k
        bucket *= bctx.dc_thresholds[1].size() + 1;
291
224k
        bucket += bucket_y;
292
224k
        qdc_row_val[x] = bucket;
293
224k
      }
294
5.28k
    }
295
998
  }
296
7.74k
}
Unexecuted instantiation: jxl::N_SSE2::DequantDC(jxl::RectT<unsigned long> const&, jxl::Image3<float>*, jxl::Plane<unsigned char>*, jxl::Image const&, float const*, float, float const*, jxl::YCbCrChromaSubsampling const&, jxl::BlockCtxMap const&)
297
298
// NOLINTNEXTLINE(google-readability-namespace-comments)
299
}  // namespace HWY_NAMESPACE
300
}  // namespace jxl
301
HWY_AFTER_NAMESPACE();
302
303
#if HWY_ONCE
304
namespace jxl {
305
306
HWY_EXPORT(DequantDC);
307
HWY_EXPORT(AdaptiveDCSmoothing);
308
Status AdaptiveDCSmoothing(JxlMemoryManager* memory_manager,
309
                           const float* dc_factors, Image3F* dc,
310
6.90k
                           ThreadPool* pool) {
311
6.90k
  return HWY_DYNAMIC_DISPATCH(AdaptiveDCSmoothing)(memory_manager, dc_factors,
312
6.90k
                                                   dc, pool);
313
6.90k
}
314
315
void DequantDC(const Rect& r, Image3F* dc, ImageB* quant_dc, const Image& in,
316
               const float* dc_factors, float mul, const float* cfl_factors,
317
               const YCbCrChromaSubsampling& chroma_subsampling,
318
7.74k
               const BlockCtxMap& bctx) {
319
7.74k
  HWY_DYNAMIC_DISPATCH(DequantDC)
320
7.74k
  (r, dc, quant_dc, in, dc_factors, mul, cfl_factors, chroma_subsampling, bctx);
321
7.74k
}
322
323
}  // namespace jxl
324
#endif  // HWY_ONCE