Coverage Report

Created: 2026-09-14 06:44

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/dav1d/src/looprestoration_tmpl.c
Line
Count
Source
1
/*
2
 * Copyright © 2018, VideoLAN and dav1d authors
3
 * Copyright © 2018, Two Orioles, LLC
4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions are met:
8
 *
9
 * 1. Redistributions of source code must retain the above copyright notice, this
10
 *    list of conditions and the following disclaimer.
11
 *
12
 * 2. Redistributions in binary form must reproduce the above copyright notice,
13
 *    this list of conditions and the following disclaimer in the documentation
14
 *    and/or other materials provided with the distribution.
15
 *
16
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
20
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 */
27
28
#include "config.h"
29
30
#include <stdint.h>
31
#include <stdlib.h>
32
#include <string.h>
33
34
#include "common/attributes.h"
35
#include "common/bitdepth.h"
36
#include "common/intops.h"
37
38
#include "src/looprestoration.h"
39
#include "src/tables.h"
40
41
// 256 * 1.5 + 3 + 3 = 390
42
6.48M
#define REST_UNIT_STRIDE (390)
43
44
static void wiener_filter_h(uint16_t *dst, const pixel (*left)[4],
45
                            const pixel *src, const int16_t fh[8],
46
                            const int w, const enum LrEdgeFlags edges
47
                            HIGHBD_DECL_SUFFIX)
48
5.90M
{
49
5.90M
    const int bitdepth = bitdepth_from_max(bitdepth_max);
50
5.90M
    const int round_bits_h = 3 + (bitdepth == 12) * 2;
51
5.90M
    const int rounding_off_h = 1 << (round_bits_h - 1);
52
5.90M
    const int clip_limit = 1 << (bitdepth + 1 + 7 - round_bits_h);
53
54
5.90M
    if (w < 6) {
55
        // For small widths, do the fully conditional loop with
56
        // conditions on each access.
57
4.55M
        for (int x = 0; x < w; x++) {
58
3.25M
            int sum = (1 << (bitdepth + 6));
59
3.25M
#if BITDEPTH == 8
60
3.25M
            sum += src[x] * 128;
61
3.25M
#endif
62
25.8M
            for (int i = 0; i < 7; i++) {
63
22.6M
                int idx = x + i - 3;
64
22.6M
                if (idx < 0) {
65
5.82M
                    if (!(edges & LR_HAVE_LEFT))
66
5.84M
                        sum += src[0] * fh[i];
67
18.4E
                    else if (left)
68
0
                        sum += left[0][4 + idx] * fh[i];
69
18.4E
                    else
70
18.4E
                        sum += src[idx] * fh[i];
71
16.8M
                } else if (idx >= w && !(edges & LR_HAVE_RIGHT)) {
72
5.71M
                    sum += src[w - 1] * fh[i];
73
5.71M
                } else
74
11.0M
                    sum += src[idx] * fh[i];
75
22.6M
            }
76
3.25M
            sum = iclip((sum + rounding_off_h) >> round_bits_h, 0, clip_limit - 1);
77
3.25M
            dst[x] = sum;
78
3.25M
        }
79
80
1.29M
        return;
81
1.29M
    }
82
83
    // For larger widths, do separate loops with less conditions; first
84
    // handle the start of the row.
85
4.60M
    int start = 3;
86
4.60M
    if (!(edges & LR_HAVE_LEFT)) {
87
        // If there's no left edge, pad using the leftmost pixel.
88
10.7M
        for (int x = 0; x < 3; x++) {
89
8.06M
            int sum = (1 << (bitdepth + 6));
90
8.06M
#if BITDEPTH == 8
91
8.06M
            sum += src[x] * 128;
92
8.06M
#endif
93
64.4M
            for (int i = 0; i < 7; i++) {
94
56.4M
                int idx = x + i - 3;
95
56.4M
                if (idx < 0)
96
16.1M
                    sum += src[0] * fh[i];
97
40.2M
                else
98
40.2M
                    sum += src[idx] * fh[i];
99
56.4M
            }
100
8.06M
            sum = iclip((sum + rounding_off_h) >> round_bits_h, 0, clip_limit - 1);
101
8.06M
            dst[x] = sum;
102
8.06M
        }
103
2.73M
    } else if (left) {
104
        // If we have the left edge and a separate left buffer, pad using that.
105
6.98M
        for (int x = 0; x < 3; x++) {
106
5.23M
            int sum = (1 << (bitdepth + 6));
107
5.23M
#if BITDEPTH == 8
108
5.23M
            sum += src[x] * 128;
109
5.23M
#endif
110
41.8M
            for (int i = 0; i < 7; i++) {
111
36.6M
                int idx = x + i - 3;
112
36.6M
                if (idx < 0)
113
10.4M
                    sum += left[0][4 + idx] * fh[i];
114
26.1M
                else
115
26.1M
                    sum += src[idx] * fh[i];
116
36.6M
            }
117
5.23M
            sum = iclip((sum + rounding_off_h) >> round_bits_h, 0, clip_limit - 1);
118
5.23M
            dst[x] = sum;
119
5.23M
        }
120
1.75M
    } else {
121
        // If we have the left edge, but no separate left buffer, we're in the
122
        // top/bottom area (lpf) with the left edge existing in the same
123
        // buffer; just do the regular loop from the start.
124
121k
        start = 0;
125
121k
    }
126
4.60M
    int end = w - 3;
127
4.60M
    if (edges & LR_HAVE_RIGHT)
128
1.79M
        end = w;
129
130
    // Do a condititon free loop for the bulk of the row.
131
363M
    for (int x = start; x < end; x++) {
132
358M
        int sum = (1 << (bitdepth + 6));
133
358M
#if BITDEPTH == 8
134
358M
        sum += src[x] * 128;
135
358M
#endif
136
2.85G
        for (int i = 0; i < 7; i++) {
137
2.49G
            int idx = x + i - 3;
138
2.49G
            sum += src[idx] * fh[i];
139
2.49G
        }
140
358M
        sum = iclip((sum + rounding_off_h) >> round_bits_h, 0, clip_limit - 1);
141
358M
        dst[x] = sum;
142
358M
    }
143
144
    // If we need to, calculate the end of the row with a condition for
145
    // right edge padding.
146
12.7M
    for (int x = end; x < w; x++) {
147
8.10M
        int sum = (1 << (bitdepth + 6));
148
8.10M
#if BITDEPTH == 8
149
8.10M
        sum += src[x] * 128;
150
8.10M
#endif
151
64.8M
        for (int i = 0; i < 7; i++) {
152
56.7M
            int idx = x + i - 3;
153
56.7M
            if (idx >= w)
154
16.1M
                sum += src[w - 1] * fh[i];
155
40.5M
            else
156
40.5M
                sum += src[idx] * fh[i];
157
56.7M
        }
158
8.10M
        sum = iclip((sum + rounding_off_h) >> round_bits_h, 0, clip_limit - 1);
159
8.10M
        dst[x] = sum;
160
8.10M
    }
161
4.60M
}
162
163
static void wiener_filter_v(pixel *p, uint16_t **ptrs, const int16_t fv[8],
164
                            const int w HIGHBD_DECL_SUFFIX)
165
286k
{
166
286k
    const int bitdepth = bitdepth_from_max(bitdepth_max);
167
168
286k
    const int round_bits_v = 11 - (bitdepth == 12) * 2;
169
286k
    const int rounding_off_v = 1 << (round_bits_v - 1);
170
286k
    const int round_offset = 1 << (bitdepth + (round_bits_v - 1));
171
172
15.7M
    for (int i = 0; i < w; i++) {
173
15.4M
        int sum = -round_offset;
174
175
        // Only filter using 6 input rows. The 7th row is assumed to be
176
        // identical to the last one.
177
        //
178
        // This function is assumed to only be called at the end, when doing
179
        // padding at the bottom.
180
108M
        for (int k = 0; k < 6; k++)
181
92.7M
            sum += ptrs[k][i] * fv[k];
182
15.4M
        sum += ptrs[5][i] * fv[6];
183
184
15.4M
        p[i] = iclip_pixel((sum + rounding_off_v) >> round_bits_v);
185
15.4M
    }
186
187
    // Shift the pointers, but only update the first 5; the 6th pointer is kept
188
    // as it was before (and the 7th is implicitly identical to the 6th).
189
1.71M
    for (int i = 0; i < 5; i++)
190
1.43M
        ptrs[i] = ptrs[i + 1];
191
286k
}
192
193
static void wiener_filter_hv(pixel *p, uint16_t **ptrs, const pixel (*left)[4],
194
                             const pixel *src, const int16_t filter[2][8],
195
                             const int w, const enum LrEdgeFlags edges
196
                             HIGHBD_DECL_SUFFIX)
197
5.24M
{
198
5.24M
    const int bitdepth = bitdepth_from_max(bitdepth_max);
199
200
5.24M
    const int round_bits_v = 11 - (bitdepth == 12) * 2;
201
5.24M
    const int rounding_off_v = 1 << (round_bits_v - 1);
202
5.24M
    const int round_offset = 1 << (bitdepth + (round_bits_v - 1));
203
204
5.24M
    const int16_t *fh = filter[0];
205
5.24M
    const int16_t *fv = filter[1];
206
207
    // Do combined horziontal and vertical filtering; doing horizontal
208
    // filtering of one row, combined with vertical filtering of 6
209
    // preexisting rows and the newly filtered row.
210
211
    // For simplicity in the C implementation, just do a separate call
212
    // of the horizontal filter, into a temporary buffer.
213
5.24M
    uint16_t tmp[REST_UNIT_STRIDE];
214
5.24M
    wiener_filter_h(tmp, left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
215
216
344M
    for (int i = 0; i < w; i++) {
217
339M
        int sum = -round_offset;
218
219
        // Filter using the 6 stored preexisting rows, and the newly
220
        // filtered one in tmp[].
221
2.36G
        for (int k = 0; k < 6; k++)
222
2.03G
            sum += ptrs[k][i] * fv[k];
223
339M
        sum += tmp[i] * fv[6];
224
        // At this point, after having read all inputs at point [i], we
225
        // could overwrite [i] with the newly filtered data.
226
227
339M
        p[i] = iclip_pixel((sum + rounding_off_v) >> round_bits_v);
228
339M
    }
229
230
    // For simplicity in the C implementation, just memcpy the newly
231
    // filtered row into ptrs[6]. Normally, in steady state filtering,
232
    // this output row, ptrs[6], is equal to ptrs[0]. However at startup,
233
    // at the top of the filtered area, we may have ptrs[0] equal to ptrs[1],
234
    // so we can't assume we can write into ptrs[0] but we need to keep
235
    // a separate pointer for the next row to write into.
236
5.24M
    memcpy(ptrs[6], tmp, sizeof(uint16_t) * REST_UNIT_STRIDE);
237
238
    // Rotate the window of pointers. Shift the 6 pointers downwards one step.
239
36.4M
    for (int i = 0; i < 6; i++)
240
31.2M
        ptrs[i] = ptrs[i + 1];
241
    // The topmost pointer, ptrs[6], which isn't used as input, is set to
242
    // ptrs[0], which will be used as output for the next _hv call.
243
    // At the start of the filtering, the caller may set ptrs[6] to the
244
    // right next buffer to fill in, instead.
245
5.24M
    ptrs[6] = ptrs[0];
246
5.24M
}
247
248
// FIXME Could split into luma and chroma specific functions,
249
// (since first and last tops are always 0 for chroma)
250
static void wiener_c(pixel *p, const ptrdiff_t stride,
251
                     const pixel (*left)[4],
252
                     const pixel *lpf, const int w, int h,
253
                     const LooprestorationParams *const params,
254
                     const enum LrEdgeFlags edges HIGHBD_DECL_SUFFIX)
255
183k
{
256
    // Values stored between horizontal and vertical filtering don't
257
    // fit in a uint8_t.
258
183k
    uint16_t hor[6 * REST_UNIT_STRIDE];
259
183k
    uint16_t *ptrs[7], *rows[6];
260
1.28M
    for (int i = 0; i < 6; i++)
261
1.10M
        rows[i] = &hor[i * REST_UNIT_STRIDE];
262
183k
    const int16_t (*const filter)[8] = params->filter;
263
183k
    const int16_t *fh = params->filter[0];
264
183k
    const int16_t *fv = params->filter[1];
265
183k
    const pixel *lpf_bottom = lpf + 6*PXSTRIDE(stride);
266
267
183k
    const pixel *src = p;
268
183k
    if (edges & LR_HAVE_TOP) {
269
100k
        ptrs[0] = rows[0];
270
100k
        ptrs[1] = rows[0];
271
100k
        ptrs[2] = rows[1];
272
100k
        ptrs[3] = rows[2];
273
100k
        ptrs[4] = rows[2];
274
100k
        ptrs[5] = rows[2];
275
276
100k
        wiener_filter_h(rows[0], NULL, lpf, fh, w, edges HIGHBD_TAIL_SUFFIX);
277
100k
        lpf += PXSTRIDE(stride);
278
100k
        wiener_filter_h(rows[1], NULL, lpf, fh, w, edges HIGHBD_TAIL_SUFFIX);
279
280
100k
        wiener_filter_h(rows[2], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
281
100k
        left++;
282
100k
        src += PXSTRIDE(stride);
283
284
100k
        if (--h <= 0)
285
1.52k
            goto v1;
286
287
99.2k
        ptrs[4] = ptrs[5] = rows[3];
288
99.2k
        wiener_filter_h(rows[3], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
289
99.2k
        left++;
290
99.2k
        src += PXSTRIDE(stride);
291
292
99.2k
        if (--h <= 0)
293
903
            goto v2;
294
295
98.3k
        ptrs[5] = rows[4];
296
98.3k
        wiener_filter_h(rows[4], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
297
98.3k
        left++;
298
98.3k
        src += PXSTRIDE(stride);
299
300
98.3k
        if (--h <= 0)
301
849
            goto v3;
302
98.3k
    } else {
303
83.0k
        ptrs[0] = rows[0];
304
83.0k
        ptrs[1] = rows[0];
305
83.0k
        ptrs[2] = rows[0];
306
83.0k
        ptrs[3] = rows[0];
307
83.0k
        ptrs[4] = rows[0];
308
83.0k
        ptrs[5] = rows[0];
309
310
83.0k
        wiener_filter_h(rows[0], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
311
83.0k
        left++;
312
83.0k
        src += PXSTRIDE(stride);
313
314
83.0k
        if (--h <= 0)
315
22.9k
            goto v1;
316
317
60.0k
        ptrs[4] = ptrs[5] = rows[1];
318
60.0k
        wiener_filter_h(rows[1], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
319
60.0k
        left++;
320
60.0k
        src += PXSTRIDE(stride);
321
322
60.0k
        if (--h <= 0)
323
10.8k
            goto v2;
324
325
49.2k
        ptrs[5] = rows[2];
326
49.2k
        wiener_filter_h(rows[2], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
327
49.2k
        left++;
328
49.2k
        src += PXSTRIDE(stride);
329
330
49.2k
        if (--h <= 0)
331
2.21k
            goto v3;
332
333
46.9k
        ptrs[6] = rows[3];
334
46.9k
        wiener_filter_hv(p, ptrs, left, src, filter, w, edges
335
46.9k
                         HIGHBD_TAIL_SUFFIX);
336
46.9k
        left++;
337
46.9k
        src += PXSTRIDE(stride);
338
46.9k
        p += PXSTRIDE(stride);
339
340
46.9k
        if (--h <= 0)
341
3.92k
            goto v3;
342
343
43.0k
        ptrs[6] = rows[4];
344
43.0k
        wiener_filter_hv(p, ptrs, left, src, filter, w, edges
345
43.0k
                         HIGHBD_TAIL_SUFFIX);
346
43.0k
        left++;
347
43.0k
        src += PXSTRIDE(stride);
348
43.0k
        p += PXSTRIDE(stride);
349
350
43.0k
        if (--h <= 0)
351
2.47k
            goto v3;
352
43.0k
    }
353
354
138k
    ptrs[6] = ptrs[5] + REST_UNIT_STRIDE;
355
4.94M
    do {
356
4.94M
        wiener_filter_hv(p, ptrs, left, src, filter, w, edges
357
4.94M
                         HIGHBD_TAIL_SUFFIX);
358
4.94M
        left++;
359
4.94M
        src += PXSTRIDE(stride);
360
4.94M
        p += PXSTRIDE(stride);
361
4.94M
    } while (--h > 0);
362
363
138k
    if (!(edges & LR_HAVE_BOTTOM))
364
36.0k
        goto v3;
365
366
102k
    wiener_filter_hv(p, ptrs, NULL, lpf_bottom, filter, w, edges
367
102k
                     HIGHBD_TAIL_SUFFIX);
368
102k
    lpf_bottom += PXSTRIDE(stride);
369
102k
    p += PXSTRIDE(stride);
370
371
102k
    wiener_filter_hv(p, ptrs, NULL, lpf_bottom, filter, w, edges
372
102k
                     HIGHBD_TAIL_SUFFIX);
373
102k
    p += PXSTRIDE(stride);
374
183k
v1:
375
183k
    wiener_filter_v(p, ptrs, fv, w HIGHBD_TAIL_SUFFIX);
376
377
183k
    return;
378
379
45.5k
v3:
380
45.5k
    wiener_filter_v(p, ptrs, fv, w HIGHBD_TAIL_SUFFIX);
381
45.5k
    p += PXSTRIDE(stride);
382
57.3k
v2:
383
57.3k
    wiener_filter_v(p, ptrs, fv, w HIGHBD_TAIL_SUFFIX);
384
57.3k
    p += PXSTRIDE(stride);
385
57.3k
    goto v1;
386
45.5k
}
387
388
// SGR
389
static NOINLINE void rotate(int32_t **sumsq_ptrs, coef **sum_ptrs, int n)
390
12.5M
{
391
12.5M
    int32_t *tmp32 = sumsq_ptrs[0];
392
12.5M
    coef *tmpc = sum_ptrs[0];
393
38.9M
    for (int i = 0; i < n - 1; i++) {
394
26.3M
        sumsq_ptrs[i] = sumsq_ptrs[i + 1];
395
26.3M
        sum_ptrs[i] = sum_ptrs[i + 1];
396
26.3M
    }
397
12.5M
    sumsq_ptrs[n - 1] = tmp32;
398
12.5M
    sum_ptrs[n - 1] = tmpc;
399
12.5M
}
400
401
static NOINLINE void rotate5_x2(int32_t **sumsq_ptrs, coef **sum_ptrs)
402
2.81M
{
403
2.81M
    int32_t *tmp32[2];
404
2.81M
    coef *tmpc[2];
405
8.43M
    for (int i = 0; i < 2; i++) {
406
5.62M
        tmp32[i] = sumsq_ptrs[i];
407
5.62M
        tmpc[i] = sum_ptrs[i];
408
5.62M
    }
409
11.2M
    for (int i = 0; i < 3; i++) {
410
8.45M
        sumsq_ptrs[i] = sumsq_ptrs[i + 2];
411
8.45M
        sum_ptrs[i] = sum_ptrs[i + 2];
412
8.45M
    }
413
8.47M
    for (int i = 0; i < 2; i++) {
414
5.66M
        sumsq_ptrs[3 + i] = tmp32[i];
415
5.66M
        sum_ptrs[3 + i] = tmpc[i];
416
5.66M
    }
417
2.81M
}
418
419
static NOINLINE void sgr_box3_row_h(int32_t *sumsq, coef *sum,
420
                                    const pixel (*left)[4],
421
                                    const pixel *src, const int w,
422
                                    const enum LrEdgeFlags edges)
423
5.23M
{
424
5.23M
    sumsq++;
425
5.23M
    sum++;
426
5.23M
    int a = edges & LR_HAVE_LEFT ? (left ? left[0][2] : src[-2]) : src[0];
427
5.23M
    int b = edges & LR_HAVE_LEFT ? (left ? left[0][3] : src[-1]) : src[0];
428
292M
    for (int x = -1; x < w + 1; x++) {
429
287M
        int c = (x + 1 < w || (edges & LR_HAVE_RIGHT)) ? src[x + 1] : src[w - 1];
430
287M
        sum[x] = a + b + c;
431
287M
        sumsq[x] = a * a + b * b + c * c;
432
287M
        a = b;
433
287M
        b = c;
434
287M
    }
435
5.23M
}
436
437
static NOINLINE void sgr_box5_row_h(int32_t *sumsq, coef *sum,
438
                                    const pixel (*left)[4],
439
                                    const pixel *src, const int w,
440
                                    const enum LrEdgeFlags edges)
441
5.68M
{
442
5.68M
    sumsq++;
443
5.68M
    sum++;
444
5.68M
    int a = edges & LR_HAVE_LEFT ? (left ? left[0][1] : src[-3]) : src[0];
445
5.68M
    int b = edges & LR_HAVE_LEFT ? (left ? left[0][2] : src[-2]) : src[0];
446
5.68M
    int c = edges & LR_HAVE_LEFT ? (left ? left[0][3] : src[-1]) : src[0];
447
5.68M
    int d = src[0];
448
323M
    for (int x = -1; x < w + 1; x++) {
449
317M
        int e = (x + 2 < w || (edges & LR_HAVE_RIGHT)) ? src[x + 2] : src[w - 1];
450
317M
        sum[x] = a + b + c + d + e;
451
317M
        sumsq[x] = a * a + b * b + c * c + d * d + e * e;
452
317M
        a = b;
453
317M
        b = c;
454
317M
        c = d;
455
317M
        d = e;
456
317M
    }
457
5.68M
}
458
459
static void sgr_box35_row_h(int32_t *sumsq3, coef *sum3,
460
                            int32_t *sumsq5, coef *sum5,
461
                            const pixel (*left)[4],
462
                            const pixel *src, const int w,
463
                            const enum LrEdgeFlags edges)
464
4.01M
{
465
4.01M
    sgr_box3_row_h(sumsq3, sum3, left, src, w, edges);
466
4.01M
    sgr_box5_row_h(sumsq5, sum5, left, src, w, edges);
467
4.01M
}
468
469
static NOINLINE void sgr_box3_row_v(int32_t **sumsq, coef **sum,
470
                                    int32_t *sumsq_out, coef *sum_out,
471
                                    const int w)
472
5.21M
{
473
295M
    for (int x = 0; x < w + 2; x++) {
474
290M
        int sq_a = sumsq[0][x];
475
290M
        int sq_b = sumsq[1][x];
476
290M
        int sq_c = sumsq[2][x];
477
290M
        int s_a = sum[0][x];
478
290M
        int s_b = sum[1][x];
479
290M
        int s_c = sum[2][x];
480
290M
        sumsq_out[x] = sq_a + sq_b + sq_c;
481
290M
        sum_out[x] = s_a + s_b + s_c;
482
290M
    }
483
5.21M
}
484
485
static NOINLINE void sgr_box5_row_v(int32_t **sumsq, coef **sum,
486
                                    int32_t *sumsq_out, coef *sum_out,
487
                                    const int w)
488
2.90M
{
489
167M
    for (int x = 0; x < w + 2; x++) {
490
164M
        int sq_a = sumsq[0][x];
491
164M
        int sq_b = sumsq[1][x];
492
164M
        int sq_c = sumsq[2][x];
493
164M
        int sq_d = sumsq[3][x];
494
164M
        int sq_e = sumsq[4][x];
495
164M
        int s_a = sum[0][x];
496
164M
        int s_b = sum[1][x];
497
164M
        int s_c = sum[2][x];
498
164M
        int s_d = sum[3][x];
499
164M
        int s_e = sum[4][x];
500
164M
        sumsq_out[x] = sq_a + sq_b + sq_c + sq_d + sq_e;
501
164M
        sum_out[x] = s_a + s_b + s_c + s_d + s_e;
502
164M
    }
503
2.90M
}
504
505
static NOINLINE void sgr_calc_row_ab(int32_t *AA, coef *BB, int w, int s,
506
                                     int bitdepth_max, int n, int sgr_one_by_x)
507
8.14M
{
508
8.14M
    const int bitdepth_min_8 = bitdepth_from_max(bitdepth_max) - 8;
509
407M
    for (int i = 0; i < w + 2; i++) {
510
399M
        const int a =
511
399M
            (AA[i] + ((1 << (2 * bitdepth_min_8)) >> 1)) >> (2 * bitdepth_min_8);
512
399M
        const int b =
513
399M
            (BB[i] + ((1 << bitdepth_min_8) >> 1)) >> bitdepth_min_8;
514
515
399M
        const unsigned p = imax(a * n - b * b, 0);
516
399M
        const unsigned z = (p * s + (1 << 19)) >> 20;
517
399M
        const unsigned x = dav1d_sgr_x_by_x[umin(z, 255)];
518
519
        // This is where we invert A and B, so that B is of size coef.
520
399M
        AA[i] = (x * BB[i] * sgr_one_by_x + (1 << 11)) >> 12;
521
399M
        BB[i] = x;
522
399M
    }
523
8.14M
}
524
525
static void sgr_box3_vert(int32_t **sumsq, coef **sum,
526
                          int32_t *sumsq_out, coef *sum_out,
527
                          const int w, const int s, const int bitdepth_max)
528
5.21M
{
529
5.21M
    sgr_box3_row_v(sumsq, sum, sumsq_out, sum_out, w);
530
5.21M
    sgr_calc_row_ab(sumsq_out, sum_out, w, s, bitdepth_max, 9, 455);
531
5.21M
    rotate(sumsq, sum, 3);
532
5.21M
}
533
534
static void sgr_box5_vert(int32_t **sumsq, coef **sum,
535
                          int32_t *sumsq_out, coef *sum_out,
536
                          const int w, const int s, const int bitdepth_max)
537
2.90M
{
538
2.90M
    sgr_box5_row_v(sumsq, sum, sumsq_out, sum_out, w);
539
2.90M
    sgr_calc_row_ab(sumsq_out, sum_out, w, s, bitdepth_max, 25, 164);
540
2.90M
    rotate5_x2(sumsq, sum);
541
2.90M
}
542
543
static void sgr_box3_hv(int32_t **sumsq, coef **sum,
544
                        int32_t *AA, coef *BB,
545
                        const pixel (*left)[4],
546
                        const pixel *src, const int w,
547
                        const int s,
548
                        const enum LrEdgeFlags edges,
549
                        const int bitdepth_max)
550
1.26M
{
551
1.26M
    sgr_box3_row_h(sumsq[2], sum[2], left, src, w, edges);
552
1.26M
    sgr_box3_vert(sumsq, sum, AA, BB, w, s, bitdepth_max);
553
1.26M
}
554
555
static NOINLINE void sgr_finish_filter_row1(coef *tmp,
556
                                            const pixel *src,
557
                                            int32_t **A_ptrs, coef **B_ptrs,
558
                                            const int w)
559
5.04M
{
560
5.04M
#define EIGHT_NEIGHBORS(P, i)\
561
532M
    ((P[1][i] + P[1][i - 1] + P[1][i + 1] + P[0][i] + P[2][i]) * 4 + \
562
532M
     (P[0][i - 1] + P[2][i - 1] +                           \
563
532M
      P[0][i + 1] + P[2][i + 1]) * 3)
564
271M
    for (int i = 0; i < w; i++) {
565
266M
        const int a = EIGHT_NEIGHBORS(B_ptrs, i + 1);
566
266M
        const int b = EIGHT_NEIGHBORS(A_ptrs, i + 1);
567
266M
        tmp[i] = (b - a * src[i] + (1 << 8)) >> 9;
568
266M
    }
569
5.04M
#undef EIGHT_NEIGHBORS
570
5.04M
}
571
572
13.1M
#define FILTER_OUT_STRIDE (384)
573
574
static NOINLINE void sgr_finish_filter2(coef *tmp,
575
                                        const pixel *src,
576
                                        const ptrdiff_t src_stride,
577
                                        int32_t **A_ptrs, coef **B_ptrs,
578
                                        const int w, const int h)
579
2.74M
{
580
2.74M
#define SIX_NEIGHBORS(P, i)\
581
299M
    ((P[0][i]     + P[1][i]) * 6 +   \
582
299M
     (P[0][i - 1] + P[1][i - 1] +    \
583
299M
      P[0][i + 1] + P[1][i + 1]) * 5)
584
152M
    for (int i = 0; i < w; i++) {
585
149M
        const int a = SIX_NEIGHBORS(B_ptrs, i + 1);
586
149M
        const int b = SIX_NEIGHBORS(A_ptrs, i + 1);
587
149M
        tmp[i] = (b - a * src[i] + (1 << 8)) >> 9;
588
149M
    }
589
2.74M
    if (h <= 1)
590
29.2k
        return;
591
2.71M
    tmp += FILTER_OUT_STRIDE;
592
2.71M
    src += PXSTRIDE(src_stride);
593
2.71M
    const int32_t *A = &A_ptrs[1][1];
594
2.71M
    const coef *B = &B_ptrs[1][1];
595
151M
    for (int i = 0; i < w; i++) {
596
148M
        const int a = B[i] * 6 + (B[i - 1] + B[i + 1]) * 5;
597
148M
        const int b = A[i] * 6 + (A[i - 1] + A[i + 1]) * 5;
598
148M
        tmp[i] = (b - a * src[i] + (1 << 7)) >> 8;
599
148M
    }
600
2.71M
#undef SIX_NEIGHBORS
601
2.71M
}
602
603
static NOINLINE void sgr_weighted_row1(pixel *dst, const coef *t1,
604
                                       const int w, const int w1 HIGHBD_DECL_SUFFIX)
605
2.81M
{
606
138M
    for (int i = 0; i < w; i++) {
607
135M
        const int v = w1 * t1[i];
608
135M
        dst[i] = iclip_pixel(dst[i] + ((v + (1 << 10)) >> 11));
609
135M
    }
610
2.81M
}
611
612
static NOINLINE void sgr_weighted2(pixel *dst, const ptrdiff_t dst_stride,
613
                                   const coef *t1, const coef *t2,
614
                                   const int w, const int h,
615
                                   const int w0, const int w1 HIGHBD_DECL_SUFFIX)
616
1.97M
{
617
5.81M
    for (int j = 0; j < h; j++) {
618
198M
        for (int i = 0; i < w; i++) {
619
194M
            const int v = w0 * t1[i] + w1 * t2[i];
620
194M
            dst[i] = iclip_pixel(dst[i] + ((v + (1 << 10)) >> 11));
621
194M
        }
622
3.84M
        dst += PXSTRIDE(dst_stride);
623
3.84M
        t1 += FILTER_OUT_STRIDE;
624
3.84M
        t2 += FILTER_OUT_STRIDE;
625
3.84M
    }
626
1.97M
}
627
628
static NOINLINE void sgr_finish1(pixel **dst, const ptrdiff_t stride,
629
                                 int32_t **A_ptrs, coef **B_ptrs, const int w,
630
                                 const int w1 HIGHBD_DECL_SUFFIX)
631
1.24M
{
632
    // Only one single row, no stride needed
633
1.24M
    ALIGN_STK_16(coef, tmp, 384,);
634
635
1.24M
    sgr_finish_filter_row1(tmp, *dst, A_ptrs, B_ptrs, w);
636
1.24M
    sgr_weighted_row1(*dst, tmp, w, w1 HIGHBD_TAIL_SUFFIX);
637
1.24M
    *dst += PXSTRIDE(stride);
638
1.24M
    rotate(A_ptrs, B_ptrs, 3);
639
1.24M
}
640
641
static NOINLINE void sgr_finish2(pixel **dst, const ptrdiff_t stride,
642
                                 int32_t **A_ptrs, coef **B_ptrs,
643
                                 const int w, const int h, const int w1
644
                                 HIGHBD_DECL_SUFFIX)
645
814k
{
646
814k
    ALIGN_STK_16(coef, tmp, 2*FILTER_OUT_STRIDE,);
647
648
814k
    sgr_finish_filter2(tmp, *dst, stride, A_ptrs, B_ptrs, w, h);
649
814k
    sgr_weighted_row1(*dst, tmp, w, w1 HIGHBD_TAIL_SUFFIX);
650
814k
    *dst += PXSTRIDE(stride);
651
814k
    if (h > 1) {
652
780k
        sgr_weighted_row1(*dst, tmp + FILTER_OUT_STRIDE, w, w1 HIGHBD_TAIL_SUFFIX);
653
780k
        *dst += PXSTRIDE(stride);
654
780k
    }
655
814k
    rotate(A_ptrs, B_ptrs, 2);
656
814k
}
657
658
static NOINLINE void sgr_finish_mix(pixel **dst, const ptrdiff_t stride,
659
                                    int32_t **A5_ptrs, coef **B5_ptrs,
660
                                    int32_t **A3_ptrs, coef **B3_ptrs,
661
                                    const int w, const int h,
662
                                    const int w0, const int w1 HIGHBD_DECL_SUFFIX)
663
1.92M
{
664
1.92M
    ALIGN_STK_16(coef, tmp5, 2*FILTER_OUT_STRIDE,);
665
1.92M
    ALIGN_STK_16(coef, tmp3, 2*FILTER_OUT_STRIDE,);
666
667
1.92M
    sgr_finish_filter2(tmp5, *dst, stride, A5_ptrs, B5_ptrs, w, h);
668
1.92M
    sgr_finish_filter_row1(tmp3, *dst, A3_ptrs, B3_ptrs, w);
669
1.92M
    if (h > 1)
670
1.94M
        sgr_finish_filter_row1(tmp3 + FILTER_OUT_STRIDE, *dst + PXSTRIDE(stride),
671
1.94M
                               &A3_ptrs[1], &B3_ptrs[1], w);
672
1.92M
    sgr_weighted2(*dst, stride, tmp5, tmp3, w, h, w0, w1 HIGHBD_TAIL_SUFFIX);
673
1.92M
    *dst += h*PXSTRIDE(stride);
674
1.92M
    rotate(A5_ptrs, B5_ptrs, 2);
675
1.92M
    rotate(A3_ptrs, B3_ptrs, 4);
676
1.92M
}
677
678
679
static void sgr_3x3_c(pixel *dst, const ptrdiff_t stride,
680
                      const pixel (*left)[4], const pixel *lpf,
681
                      const int w, int h,
682
                      const LooprestorationParams *const params,
683
                      const enum LrEdgeFlags edges HIGHBD_DECL_SUFFIX)
684
34.0k
{
685
3.87M
#define BUF_STRIDE (384 + 16)
686
34.0k
    ALIGN_STK_16(int32_t, sumsq_buf, BUF_STRIDE * 3 + 16,);
687
34.0k
    ALIGN_STK_16(coef, sum_buf, BUF_STRIDE * 3 + 16,);
688
34.0k
    int32_t *sumsq_ptrs[3], *sumsq_rows[3];
689
34.0k
    coef *sum_ptrs[3], *sum_rows[3];
690
136k
    for (int i = 0; i < 3; i++) {
691
102k
        sumsq_rows[i] = &sumsq_buf[i * BUF_STRIDE];
692
102k
        sum_rows[i] = &sum_buf[i * BUF_STRIDE];
693
102k
    }
694
695
34.0k
    ALIGN_STK_16(int32_t, A_buf, BUF_STRIDE * 3 + 16,);
696
34.0k
    ALIGN_STK_16(coef, B_buf, BUF_STRIDE * 3 + 16,);
697
34.0k
    int32_t *A_ptrs[3];
698
34.0k
    coef *B_ptrs[3];
699
136k
    for (int i = 0; i < 3; i++) {
700
102k
        A_ptrs[i] = &A_buf[i * BUF_STRIDE];
701
102k
        B_ptrs[i] = &B_buf[i * BUF_STRIDE];
702
102k
    }
703
34.0k
    const pixel *src = dst;
704
34.0k
    const pixel *lpf_bottom = lpf + 6*PXSTRIDE(stride);
705
706
34.0k
    if (edges & LR_HAVE_TOP) {
707
24.0k
        sumsq_ptrs[0] = sumsq_rows[0];
708
24.0k
        sumsq_ptrs[1] = sumsq_rows[1];
709
24.0k
        sumsq_ptrs[2] = sumsq_rows[2];
710
24.0k
        sum_ptrs[0] = sum_rows[0];
711
24.0k
        sum_ptrs[1] = sum_rows[1];
712
24.0k
        sum_ptrs[2] = sum_rows[2];
713
714
24.0k
        sgr_box3_row_h(sumsq_rows[0], sum_rows[0], NULL, lpf, w, edges);
715
24.0k
        lpf += PXSTRIDE(stride);
716
24.0k
        sgr_box3_row_h(sumsq_rows[1], sum_rows[1], NULL, lpf, w, edges);
717
718
24.0k
        sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
719
24.0k
                    left, src, w, params->sgr.s1, edges, BITDEPTH_MAX);
720
24.0k
        left++;
721
24.0k
        src += PXSTRIDE(stride);
722
24.0k
        rotate(A_ptrs, B_ptrs, 3);
723
724
24.0k
        if (--h <= 0)
725
627
            goto vert_1;
726
727
23.4k
        sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
728
23.4k
                    left, src, w, params->sgr.s1, edges, BITDEPTH_MAX);
729
23.4k
        left++;
730
23.4k
        src += PXSTRIDE(stride);
731
23.4k
        rotate(A_ptrs, B_ptrs, 3);
732
733
23.4k
        if (--h <= 0)
734
637
            goto vert_2;
735
23.4k
    } else {
736
10.0k
        sumsq_ptrs[0] = sumsq_rows[0];
737
10.0k
        sumsq_ptrs[1] = sumsq_rows[0];
738
10.0k
        sumsq_ptrs[2] = sumsq_rows[0];
739
10.0k
        sum_ptrs[0] = sum_rows[0];
740
10.0k
        sum_ptrs[1] = sum_rows[0];
741
10.0k
        sum_ptrs[2] = sum_rows[0];
742
743
10.0k
        sgr_box3_row_h(sumsq_rows[0], sum_rows[0], left, src, w, edges);
744
10.0k
        left++;
745
10.0k
        src += PXSTRIDE(stride);
746
747
10.0k
        sgr_box3_vert(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
748
10.0k
                      w, params->sgr.s1, BITDEPTH_MAX);
749
10.0k
        rotate(A_ptrs, B_ptrs, 3);
750
751
10.0k
        if (--h <= 0)
752
1.62k
            goto vert_1;
753
754
8.40k
        sumsq_ptrs[2] = sumsq_rows[1];
755
8.40k
        sum_ptrs[2] = sum_rows[1];
756
757
8.40k
        sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
758
8.40k
                    left, src, w, params->sgr.s1, edges, BITDEPTH_MAX);
759
8.40k
        left++;
760
8.40k
        src += PXSTRIDE(stride);
761
8.40k
        rotate(A_ptrs, B_ptrs, 3);
762
763
8.40k
        if (--h <= 0)
764
1.35k
            goto vert_2;
765
766
7.05k
        sumsq_ptrs[2] = sumsq_rows[2];
767
7.05k
        sum_ptrs[2] = sum_rows[2];
768
7.05k
    }
769
770
1.17M
    do {
771
1.17M
        sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
772
1.17M
                    left, src, w, params->sgr.s1, edges, BITDEPTH_MAX);
773
1.17M
        left++;
774
1.17M
        src += PXSTRIDE(stride);
775
776
1.17M
        sgr_finish1(&dst, stride, A_ptrs, B_ptrs,
777
1.17M
                    w, params->sgr.w1 HIGHBD_TAIL_SUFFIX);
778
1.17M
    } while (--h > 0);
779
780
29.8k
    if (!(edges & LR_HAVE_BOTTOM))
781
7.86k
        goto vert_2;
782
783
21.9k
    sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
784
21.9k
                NULL, lpf_bottom, w, params->sgr.s1, edges, BITDEPTH_MAX);
785
21.9k
    lpf_bottom += PXSTRIDE(stride);
786
787
21.9k
    sgr_finish1(&dst, stride, A_ptrs, B_ptrs,
788
21.9k
                w, params->sgr.w1 HIGHBD_TAIL_SUFFIX);
789
790
21.9k
    sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
791
21.9k
                NULL, lpf_bottom, w, params->sgr.s1, edges, BITDEPTH_MAX);
792
793
21.9k
    sgr_finish1(&dst, stride, A_ptrs, B_ptrs,
794
21.9k
                w, params->sgr.w1 HIGHBD_TAIL_SUFFIX);
795
21.9k
    return;
796
797
9.85k
vert_2:
798
9.85k
    sumsq_ptrs[2] = sumsq_ptrs[1];
799
9.85k
    sum_ptrs[2] = sum_ptrs[1];
800
9.85k
    sgr_box3_vert(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
801
9.85k
                  w, params->sgr.s1, BITDEPTH_MAX);
802
803
9.85k
    sgr_finish1(&dst, stride, A_ptrs, B_ptrs,
804
9.85k
                w, params->sgr.w1 HIGHBD_TAIL_SUFFIX);
805
806
12.1k
output_1:
807
12.1k
    sumsq_ptrs[2] = sumsq_ptrs[1];
808
12.1k
    sum_ptrs[2] = sum_ptrs[1];
809
12.1k
    sgr_box3_vert(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
810
12.1k
                  w, params->sgr.s1, BITDEPTH_MAX);
811
812
12.1k
    sgr_finish1(&dst, stride, A_ptrs, B_ptrs,
813
12.1k
                w, params->sgr.w1 HIGHBD_TAIL_SUFFIX);
814
12.1k
    return;
815
816
2.25k
vert_1:
817
2.25k
    sumsq_ptrs[2] = sumsq_ptrs[1];
818
2.25k
    sum_ptrs[2] = sum_ptrs[1];
819
2.25k
    sgr_box3_vert(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
820
2.25k
                  w, params->sgr.s1, BITDEPTH_MAX);
821
2.25k
    rotate(A_ptrs, B_ptrs, 3);
822
2.25k
    goto output_1;
823
9.85k
}
824
825
static void sgr_5x5_c(pixel *dst, const ptrdiff_t stride,
826
                      const pixel (*left)[4], const pixel *lpf,
827
                      const int w, int h,
828
                      const LooprestorationParams *const params,
829
                      const enum LrEdgeFlags edges HIGHBD_DECL_SUFFIX)
830
42.5k
{
831
42.5k
    ALIGN_STK_16(int32_t, sumsq_buf, BUF_STRIDE * 5 + 16,);
832
42.5k
    ALIGN_STK_16(coef, sum_buf, BUF_STRIDE * 5 + 16,);
833
42.5k
    int32_t *sumsq_ptrs[5], *sumsq_rows[5];
834
42.5k
    coef *sum_ptrs[5], *sum_rows[5];
835
255k
    for (int i = 0; i < 5; i++) {
836
212k
        sumsq_rows[i] = &sumsq_buf[i * BUF_STRIDE];
837
212k
        sum_rows[i] = &sum_buf[i * BUF_STRIDE];
838
212k
    }
839
840
42.5k
    ALIGN_STK_16(int32_t, A_buf, BUF_STRIDE * 2 + 16,);
841
42.5k
    ALIGN_STK_16(coef, B_buf, BUF_STRIDE * 2 + 16,);
842
42.5k
    int32_t *A_ptrs[2];
843
42.5k
    coef *B_ptrs[2];
844
127k
    for (int i = 0; i < 2; i++) {
845
85.0k
        A_ptrs[i] = &A_buf[i * BUF_STRIDE];
846
85.0k
        B_ptrs[i] = &B_buf[i * BUF_STRIDE];
847
85.0k
    }
848
42.5k
    const pixel *src = dst;
849
42.5k
    const pixel *lpf_bottom = lpf + 6*PXSTRIDE(stride);
850
851
42.5k
    if (edges & LR_HAVE_TOP) {
852
27.6k
        sumsq_ptrs[0] = sumsq_rows[0];
853
27.6k
        sumsq_ptrs[1] = sumsq_rows[0];
854
27.6k
        sumsq_ptrs[2] = sumsq_rows[1];
855
27.6k
        sumsq_ptrs[3] = sumsq_rows[2];
856
27.6k
        sumsq_ptrs[4] = sumsq_rows[3];
857
27.6k
        sum_ptrs[0] = sum_rows[0];
858
27.6k
        sum_ptrs[1] = sum_rows[0];
859
27.6k
        sum_ptrs[2] = sum_rows[1];
860
27.6k
        sum_ptrs[3] = sum_rows[2];
861
27.6k
        sum_ptrs[4] = sum_rows[3];
862
863
27.6k
        sgr_box5_row_h(sumsq_rows[0], sum_rows[0], NULL, lpf, w, edges);
864
27.6k
        lpf += PXSTRIDE(stride);
865
27.6k
        sgr_box5_row_h(sumsq_rows[1], sum_rows[1], NULL, lpf, w, edges);
866
867
27.6k
        sgr_box5_row_h(sumsq_rows[2], sum_rows[2], left, src, w, edges);
868
27.6k
        left++;
869
27.6k
        src += PXSTRIDE(stride);
870
871
27.6k
        if (--h <= 0)
872
640
            goto vert_1;
873
874
26.9k
        sgr_box5_row_h(sumsq_rows[3], sum_rows[3], left, src, w, edges);
875
26.9k
        left++;
876
26.9k
        src += PXSTRIDE(stride);
877
26.9k
        sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
878
26.9k
                      w, params->sgr.s0, BITDEPTH_MAX);
879
26.9k
        rotate(A_ptrs, B_ptrs, 2);
880
881
26.9k
        if (--h <= 0)
882
612
            goto vert_2;
883
884
        // ptrs are rotated by 2; both [3] and [4] now point at rows[0]; set
885
        // one of them to point at the previously unused rows[4].
886
26.3k
        sumsq_ptrs[3] = sumsq_rows[4];
887
26.3k
        sum_ptrs[3] = sum_rows[4];
888
26.3k
    } else {
889
14.9k
        sumsq_ptrs[0] = sumsq_rows[0];
890
14.9k
        sumsq_ptrs[1] = sumsq_rows[0];
891
14.9k
        sumsq_ptrs[2] = sumsq_rows[0];
892
14.9k
        sumsq_ptrs[3] = sumsq_rows[0];
893
14.9k
        sumsq_ptrs[4] = sumsq_rows[0];
894
14.9k
        sum_ptrs[0] = sum_rows[0];
895
14.9k
        sum_ptrs[1] = sum_rows[0];
896
14.9k
        sum_ptrs[2] = sum_rows[0];
897
14.9k
        sum_ptrs[3] = sum_rows[0];
898
14.9k
        sum_ptrs[4] = sum_rows[0];
899
900
14.9k
        sgr_box5_row_h(sumsq_rows[0], sum_rows[0], left, src, w, edges);
901
14.9k
        left++;
902
14.9k
        src += PXSTRIDE(stride);
903
904
14.9k
        if (--h <= 0)
905
1.45k
            goto vert_1;
906
907
13.4k
        sumsq_ptrs[4] = sumsq_rows[1];
908
13.4k
        sum_ptrs[4] = sum_rows[1];
909
910
13.4k
        sgr_box5_row_h(sumsq_rows[1], sum_rows[1], left, src, w, edges);
911
13.4k
        left++;
912
13.4k
        src += PXSTRIDE(stride);
913
914
13.4k
        sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
915
13.4k
                      w, params->sgr.s0, BITDEPTH_MAX);
916
13.4k
        rotate(A_ptrs, B_ptrs, 2);
917
918
13.4k
        if (--h <= 0)
919
1.88k
            goto vert_2;
920
921
11.5k
        sumsq_ptrs[3] = sumsq_rows[2];
922
11.5k
        sumsq_ptrs[4] = sumsq_rows[3];
923
11.5k
        sum_ptrs[3] = sum_rows[2];
924
11.5k
        sum_ptrs[4] = sum_rows[3];
925
926
11.5k
        sgr_box5_row_h(sumsq_rows[2], sum_rows[2], left, src, w, edges);
927
11.5k
        left++;
928
11.5k
        src += PXSTRIDE(stride);
929
930
11.5k
        if (--h <= 0)
931
1.04k
            goto odd;
932
933
10.5k
        sgr_box5_row_h(sumsq_rows[3], sum_rows[3], left, src, w, edges);
934
10.5k
        left++;
935
10.5k
        src += PXSTRIDE(stride);
936
937
10.5k
        sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
938
10.5k
                      w, params->sgr.s0, BITDEPTH_MAX);
939
10.5k
        sgr_finish2(&dst, stride, A_ptrs, B_ptrs,
940
10.5k
                    w, 2, params->sgr.w0 HIGHBD_TAIL_SUFFIX);
941
942
10.5k
        if (--h <= 0)
943
1.10k
            goto vert_2;
944
945
        // ptrs are rotated by 2; both [3] and [4] now point at rows[0]; set
946
        // one of them to point at the previously unused rows[4].
947
9.43k
        sumsq_ptrs[3] = sumsq_rows[4];
948
9.43k
        sum_ptrs[3] = sum_rows[4];
949
9.43k
    }
950
951
739k
    do {
952
739k
        sgr_box5_row_h(sumsq_ptrs[3], sum_ptrs[3], left, src, w, edges);
953
739k
        left++;
954
739k
        src += PXSTRIDE(stride);
955
956
739k
        if (--h <= 0)
957
4.80k
            goto odd;
958
959
735k
        sgr_box5_row_h(sumsq_ptrs[4], sum_ptrs[4], left, src, w, edges);
960
735k
        left++;
961
735k
        src += PXSTRIDE(stride);
962
963
735k
        sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
964
735k
                      w, params->sgr.s0, BITDEPTH_MAX);
965
735k
        sgr_finish2(&dst, stride, A_ptrs, B_ptrs,
966
735k
                    w, 2, params->sgr.w0 HIGHBD_TAIL_SUFFIX);
967
735k
    } while (--h > 0);
968
969
30.9k
    if (!(edges & LR_HAVE_BOTTOM))
970
4.18k
        goto vert_2;
971
972
26.8k
    sgr_box5_row_h(sumsq_ptrs[3], sum_ptrs[3], NULL, lpf_bottom, w, edges);
973
26.8k
    lpf_bottom += PXSTRIDE(stride);
974
26.8k
    sgr_box5_row_h(sumsq_ptrs[4], sum_ptrs[4], NULL, lpf_bottom, w, edges);
975
976
34.5k
output_2:
977
34.5k
    sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
978
34.5k
                  w, params->sgr.s0, BITDEPTH_MAX);
979
34.5k
    sgr_finish2(&dst, stride, A_ptrs, B_ptrs,
980
34.5k
                w, 2, params->sgr.w0 HIGHBD_TAIL_SUFFIX);
981
34.5k
    return;
982
983
7.78k
vert_2:
984
    // Duplicate the last row twice more
985
7.78k
    sumsq_ptrs[3] = sumsq_ptrs[2];
986
7.78k
    sumsq_ptrs[4] = sumsq_ptrs[2];
987
7.78k
    sum_ptrs[3] = sum_ptrs[2];
988
7.78k
    sum_ptrs[4] = sum_ptrs[2];
989
7.78k
    goto output_2;
990
991
5.85k
odd:
992
    // Copy the last row as padding once
993
5.85k
    sumsq_ptrs[4] = sumsq_ptrs[3];
994
5.85k
    sum_ptrs[4] = sum_ptrs[3];
995
996
5.85k
    sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
997
5.85k
                  w, params->sgr.s0, BITDEPTH_MAX);
998
5.85k
    sgr_finish2(&dst, stride, A_ptrs, B_ptrs,
999
5.85k
                w, 2, params->sgr.w0 HIGHBD_TAIL_SUFFIX);
1000
1001
7.94k
output_1:
1002
    // Duplicate the last row twice more
1003
7.94k
    sumsq_ptrs[3] = sumsq_ptrs[2];
1004
7.94k
    sumsq_ptrs[4] = sumsq_ptrs[2];
1005
7.94k
    sum_ptrs[3] = sum_ptrs[2];
1006
7.94k
    sum_ptrs[4] = sum_ptrs[2];
1007
1008
7.94k
    sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
1009
7.94k
                  w, params->sgr.s0, BITDEPTH_MAX);
1010
    // Output only one row
1011
7.94k
    sgr_finish2(&dst, stride, A_ptrs, B_ptrs,
1012
7.94k
                w, 1, params->sgr.w0 HIGHBD_TAIL_SUFFIX);
1013
7.94k
    return;
1014
1015
2.09k
vert_1:
1016
    // Copy the last row as padding once
1017
2.09k
    sumsq_ptrs[4] = sumsq_ptrs[3];
1018
2.09k
    sum_ptrs[4] = sum_ptrs[3];
1019
1020
2.09k
    sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
1021
2.09k
                  w, params->sgr.s0, BITDEPTH_MAX);
1022
2.09k
    rotate(A_ptrs, B_ptrs, 2);
1023
1024
2.09k
    goto output_1;
1025
5.85k
}
1026
1027
static void sgr_mix_c(pixel *dst, const ptrdiff_t stride,
1028
                      const pixel (*left)[4], const pixel *lpf,
1029
                      const int w, int h,
1030
                      const LooprestorationParams *const params,
1031
                      const enum LrEdgeFlags edges HIGHBD_DECL_SUFFIX)
1032
102k
{
1033
102k
    ALIGN_STK_16(int32_t, sumsq5_buf, BUF_STRIDE * 5 + 16,);
1034
102k
    ALIGN_STK_16(coef, sum5_buf, BUF_STRIDE * 5 + 16,);
1035
102k
    int32_t *sumsq5_ptrs[5], *sumsq5_rows[5];
1036
102k
    coef *sum5_ptrs[5], *sum5_rows[5];
1037
615k
    for (int i = 0; i < 5; i++) {
1038
513k
        sumsq5_rows[i] = &sumsq5_buf[i * BUF_STRIDE];
1039
513k
        sum5_rows[i] = &sum5_buf[i * BUF_STRIDE];
1040
513k
    }
1041
102k
    ALIGN_STK_16(int32_t, sumsq3_buf, BUF_STRIDE * 3 + 16,);
1042
102k
    ALIGN_STK_16(coef, sum3_buf, BUF_STRIDE * 3 + 16,);
1043
102k
    int32_t *sumsq3_ptrs[3], *sumsq3_rows[3];
1044
102k
    coef *sum3_ptrs[3], *sum3_rows[3];
1045
410k
    for (int i = 0; i < 3; i++) {
1046
307k
        sumsq3_rows[i] = &sumsq3_buf[i * BUF_STRIDE];
1047
307k
        sum3_rows[i] = &sum3_buf[i * BUF_STRIDE];
1048
307k
    }
1049
1050
102k
    ALIGN_STK_16(int32_t, A5_buf, BUF_STRIDE * 2 + 16,);
1051
102k
    ALIGN_STK_16(coef, B5_buf, BUF_STRIDE * 2 + 16,);
1052
102k
    int32_t *A5_ptrs[2];
1053
102k
    coef *B5_ptrs[2];
1054
307k
    for (int i = 0; i < 2; i++) {
1055
205k
        A5_ptrs[i] = &A5_buf[i * BUF_STRIDE];
1056
205k
        B5_ptrs[i] = &B5_buf[i * BUF_STRIDE];
1057
205k
    }
1058
102k
    ALIGN_STK_16(int32_t, A3_buf, BUF_STRIDE * 4 + 16,);
1059
102k
    ALIGN_STK_16(coef, B3_buf, BUF_STRIDE * 4 + 16,);
1060
102k
    int32_t *A3_ptrs[4];
1061
102k
    coef *B3_ptrs[4];
1062
513k
    for (int i = 0; i < 4; i++) {
1063
410k
        A3_ptrs[i] = &A3_buf[i * BUF_STRIDE];
1064
410k
        B3_ptrs[i] = &B3_buf[i * BUF_STRIDE];
1065
410k
    }
1066
102k
    const pixel *src = dst;
1067
102k
    const pixel *lpf_bottom = lpf + 6*PXSTRIDE(stride);
1068
1069
102k
    if (edges & LR_HAVE_TOP) {
1070
72.1k
        sumsq5_ptrs[0] = sumsq5_rows[0];
1071
72.1k
        sumsq5_ptrs[1] = sumsq5_rows[0];
1072
72.1k
        sumsq5_ptrs[2] = sumsq5_rows[1];
1073
72.1k
        sumsq5_ptrs[3] = sumsq5_rows[2];
1074
72.1k
        sumsq5_ptrs[4] = sumsq5_rows[3];
1075
72.1k
        sum5_ptrs[0] = sum5_rows[0];
1076
72.1k
        sum5_ptrs[1] = sum5_rows[0];
1077
72.1k
        sum5_ptrs[2] = sum5_rows[1];
1078
72.1k
        sum5_ptrs[3] = sum5_rows[2];
1079
72.1k
        sum5_ptrs[4] = sum5_rows[3];
1080
1081
72.1k
        sumsq3_ptrs[0] = sumsq3_rows[0];
1082
72.1k
        sumsq3_ptrs[1] = sumsq3_rows[1];
1083
72.1k
        sumsq3_ptrs[2] = sumsq3_rows[2];
1084
72.1k
        sum3_ptrs[0] = sum3_rows[0];
1085
72.1k
        sum3_ptrs[1] = sum3_rows[1];
1086
72.1k
        sum3_ptrs[2] = sum3_rows[2];
1087
1088
72.1k
        sgr_box35_row_h(sumsq3_rows[0], sum3_rows[0],
1089
72.1k
                        sumsq5_rows[0], sum5_rows[0],
1090
72.1k
                        NULL, lpf, w, edges);
1091
72.1k
        lpf += PXSTRIDE(stride);
1092
72.1k
        sgr_box35_row_h(sumsq3_rows[1], sum3_rows[1],
1093
72.1k
                        sumsq5_rows[1], sum5_rows[1],
1094
72.1k
                        NULL, lpf, w, edges);
1095
1096
72.1k
        sgr_box35_row_h(sumsq3_rows[2], sum3_rows[2],
1097
72.1k
                        sumsq5_rows[2], sum5_rows[2],
1098
72.1k
                        left, src, w, edges);
1099
72.1k
        left++;
1100
72.1k
        src += PXSTRIDE(stride);
1101
1102
72.1k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1103
72.1k
                      w, params->sgr.s1, BITDEPTH_MAX);
1104
72.1k
        rotate(A3_ptrs, B3_ptrs, 4);
1105
1106
72.1k
        if (--h <= 0)
1107
1.92k
            goto vert_1;
1108
1109
70.2k
        sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1110
70.2k
                        sumsq5_rows[3], sum5_rows[3],
1111
70.2k
                        left, src, w, edges);
1112
70.2k
        left++;
1113
70.2k
        src += PXSTRIDE(stride);
1114
70.2k
        sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1115
70.2k
                      w, params->sgr.s0, BITDEPTH_MAX);
1116
70.2k
        rotate(A5_ptrs, B5_ptrs, 2);
1117
70.2k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1118
70.2k
                      w, params->sgr.s1, BITDEPTH_MAX);
1119
70.2k
        rotate(A3_ptrs, B3_ptrs, 4);
1120
1121
70.2k
        if (--h <= 0)
1122
1.33k
            goto vert_2;
1123
1124
        // ptrs are rotated by 2; both [3] and [4] now point at rows[0]; set
1125
        // one of them to point at the previously unused rows[4].
1126
68.8k
        sumsq5_ptrs[3] = sumsq5_rows[4];
1127
68.8k
        sum5_ptrs[3] = sum5_rows[4];
1128
68.8k
    } else {
1129
30.5k
        sumsq5_ptrs[0] = sumsq5_rows[0];
1130
30.5k
        sumsq5_ptrs[1] = sumsq5_rows[0];
1131
30.5k
        sumsq5_ptrs[2] = sumsq5_rows[0];
1132
30.5k
        sumsq5_ptrs[3] = sumsq5_rows[0];
1133
30.5k
        sumsq5_ptrs[4] = sumsq5_rows[0];
1134
30.5k
        sum5_ptrs[0] = sum5_rows[0];
1135
30.5k
        sum5_ptrs[1] = sum5_rows[0];
1136
30.5k
        sum5_ptrs[2] = sum5_rows[0];
1137
30.5k
        sum5_ptrs[3] = sum5_rows[0];
1138
30.5k
        sum5_ptrs[4] = sum5_rows[0];
1139
1140
30.5k
        sumsq3_ptrs[0] = sumsq3_rows[0];
1141
30.5k
        sumsq3_ptrs[1] = sumsq3_rows[0];
1142
30.5k
        sumsq3_ptrs[2] = sumsq3_rows[0];
1143
30.5k
        sum3_ptrs[0] = sum3_rows[0];
1144
30.5k
        sum3_ptrs[1] = sum3_rows[0];
1145
30.5k
        sum3_ptrs[2] = sum3_rows[0];
1146
1147
30.5k
        sgr_box35_row_h(sumsq3_rows[0], sum3_rows[0],
1148
30.5k
                        sumsq5_rows[0], sum5_rows[0],
1149
30.5k
                        left, src, w, edges);
1150
30.5k
        left++;
1151
30.5k
        src += PXSTRIDE(stride);
1152
1153
30.5k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1154
30.5k
                      w, params->sgr.s1, BITDEPTH_MAX);
1155
30.5k
        rotate(A3_ptrs, B3_ptrs, 4);
1156
1157
30.5k
        if (--h <= 0)
1158
5.34k
            goto vert_1;
1159
1160
25.1k
        sumsq5_ptrs[4] = sumsq5_rows[1];
1161
25.1k
        sum5_ptrs[4] = sum5_rows[1];
1162
1163
25.1k
        sumsq3_ptrs[2] = sumsq3_rows[1];
1164
25.1k
        sum3_ptrs[2] = sum3_rows[1];
1165
1166
25.1k
        sgr_box35_row_h(sumsq3_rows[1], sum3_rows[1],
1167
25.1k
                        sumsq5_rows[1], sum5_rows[1],
1168
25.1k
                        left, src, w, edges);
1169
25.1k
        left++;
1170
25.1k
        src += PXSTRIDE(stride);
1171
1172
25.1k
        sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1173
25.1k
                      w, params->sgr.s0, BITDEPTH_MAX);
1174
25.1k
        rotate(A5_ptrs, B5_ptrs, 2);
1175
25.1k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1176
25.1k
                      w, params->sgr.s1, BITDEPTH_MAX);
1177
25.1k
        rotate(A3_ptrs, B3_ptrs, 4);
1178
1179
25.1k
        if (--h <= 0)
1180
4.21k
            goto vert_2;
1181
1182
20.9k
        sumsq5_ptrs[3] = sumsq5_rows[2];
1183
20.9k
        sumsq5_ptrs[4] = sumsq5_rows[3];
1184
20.9k
        sum5_ptrs[3] = sum5_rows[2];
1185
20.9k
        sum5_ptrs[4] = sum5_rows[3];
1186
1187
20.9k
        sumsq3_ptrs[2] = sumsq3_rows[2];
1188
20.9k
        sum3_ptrs[2] = sum3_rows[2];
1189
1190
20.9k
        sgr_box35_row_h(sumsq3_rows[2], sum3_rows[2],
1191
20.9k
                        sumsq5_rows[2], sum5_rows[2],
1192
20.9k
                        left, src, w, edges);
1193
20.9k
        left++;
1194
20.9k
        src += PXSTRIDE(stride);
1195
1196
20.9k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1197
20.9k
                      w, params->sgr.s1, BITDEPTH_MAX);
1198
20.9k
        rotate(A3_ptrs, B3_ptrs, 4);
1199
1200
20.9k
        if (--h <= 0)
1201
2.01k
            goto odd;
1202
1203
18.9k
        sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1204
18.9k
                        sumsq5_rows[3], sum5_rows[3],
1205
18.9k
                        left, src, w, edges);
1206
18.9k
        left++;
1207
18.9k
        src += PXSTRIDE(stride);
1208
1209
18.9k
        sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1210
18.9k
                      w, params->sgr.s0, BITDEPTH_MAX);
1211
18.9k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1212
18.9k
                      w, params->sgr.s1, BITDEPTH_MAX);
1213
18.9k
        sgr_finish_mix(&dst, stride, A5_ptrs, B5_ptrs, A3_ptrs, B3_ptrs,
1214
18.9k
                       w, 2, params->sgr.w0, params->sgr.w1
1215
18.9k
                       HIGHBD_TAIL_SUFFIX);
1216
1217
18.9k
        if (--h <= 0)
1218
2.43k
            goto vert_2;
1219
1220
        // ptrs are rotated by 2; both [3] and [4] now point at rows[0]; set
1221
        // one of them to point at the previously unused rows[4].
1222
16.4k
        sumsq5_ptrs[3] = sumsq5_rows[4];
1223
16.4k
        sum5_ptrs[3] = sum5_rows[4];
1224
16.4k
    }
1225
1226
1.81M
    do {
1227
1.81M
        sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1228
1.81M
                        sumsq5_ptrs[3], sum5_ptrs[3],
1229
1.81M
                        left, src, w, edges);
1230
1.81M
        left++;
1231
1.81M
        src += PXSTRIDE(stride);
1232
1233
1.81M
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1234
1.81M
                      w, params->sgr.s1, BITDEPTH_MAX);
1235
1.81M
        rotate(A3_ptrs, B3_ptrs, 4);
1236
1237
1.81M
        if (--h <= 0)
1238
12.0k
            goto odd;
1239
1240
1.80M
        sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1241
1.80M
                        sumsq5_ptrs[4], sum5_ptrs[4],
1242
1.80M
                        left, src, w, edges);
1243
1.80M
        left++;
1244
1.80M
        src += PXSTRIDE(stride);
1245
1246
1.80M
        sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1247
1.80M
                      w, params->sgr.s0, BITDEPTH_MAX);
1248
1.80M
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1249
1.80M
                      w, params->sgr.s1, BITDEPTH_MAX);
1250
1.80M
        sgr_finish_mix(&dst, stride, A5_ptrs, B5_ptrs, A3_ptrs, B3_ptrs,
1251
1.80M
                       w, 2, params->sgr.w0, params->sgr.w1
1252
1.80M
                       HIGHBD_TAIL_SUFFIX);
1253
1.80M
    } while (--h > 0);
1254
1255
73.3k
    if (!(edges & LR_HAVE_BOTTOM))
1256
7.78k
        goto vert_2;
1257
1258
65.5k
    sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1259
65.5k
                    sumsq5_ptrs[3], sum5_ptrs[3],
1260
65.5k
                    NULL, lpf_bottom, w, edges);
1261
65.5k
    lpf_bottom += PXSTRIDE(stride);
1262
65.5k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1263
65.5k
                  w, params->sgr.s1, BITDEPTH_MAX);
1264
65.5k
    rotate(A3_ptrs, B3_ptrs, 4);
1265
1266
65.5k
    sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1267
65.5k
                    sumsq5_ptrs[4], sum5_ptrs[4],
1268
65.5k
                    NULL, lpf_bottom, w, edges);
1269
1270
81.2k
output_2:
1271
81.2k
    sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1272
81.2k
                  w, params->sgr.s0, BITDEPTH_MAX);
1273
81.2k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1274
81.2k
                  w, params->sgr.s1, BITDEPTH_MAX);
1275
81.2k
    sgr_finish_mix(&dst, stride, A5_ptrs, B5_ptrs, A3_ptrs, B3_ptrs,
1276
81.2k
                   w, 2, params->sgr.w0, params->sgr.w1
1277
81.2k
                   HIGHBD_TAIL_SUFFIX);
1278
81.2k
    return;
1279
1280
15.7k
vert_2:
1281
    // Duplicate the last row twice more
1282
15.7k
    sumsq5_ptrs[3] = sumsq5_ptrs[2];
1283
15.7k
    sumsq5_ptrs[4] = sumsq5_ptrs[2];
1284
15.7k
    sum5_ptrs[3] = sum5_ptrs[2];
1285
15.7k
    sum5_ptrs[4] = sum5_ptrs[2];
1286
1287
15.7k
    sumsq3_ptrs[2] = sumsq3_ptrs[1];
1288
15.7k
    sum3_ptrs[2] = sum3_ptrs[1];
1289
15.7k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1290
15.7k
                  w, params->sgr.s1, BITDEPTH_MAX);
1291
15.7k
    rotate(A3_ptrs, B3_ptrs, 4);
1292
1293
15.7k
    sumsq3_ptrs[2] = sumsq3_ptrs[1];
1294
15.7k
    sum3_ptrs[2] = sum3_ptrs[1];
1295
1296
15.7k
    goto output_2;
1297
1298
14.0k
odd:
1299
    // Copy the last row as padding once
1300
14.0k
    sumsq5_ptrs[4] = sumsq5_ptrs[3];
1301
14.0k
    sum5_ptrs[4] = sum5_ptrs[3];
1302
1303
14.0k
    sumsq3_ptrs[2] = sumsq3_ptrs[1];
1304
14.0k
    sum3_ptrs[2] = sum3_ptrs[1];
1305
1306
14.0k
    sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1307
14.0k
                  w, params->sgr.s0, BITDEPTH_MAX);
1308
14.0k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1309
14.0k
                  w, params->sgr.s1, BITDEPTH_MAX);
1310
14.0k
    sgr_finish_mix(&dst, stride, A5_ptrs, B5_ptrs, A3_ptrs, B3_ptrs,
1311
14.0k
                   w, 2, params->sgr.w0, params->sgr.w1
1312
14.0k
                   HIGHBD_TAIL_SUFFIX);
1313
1314
21.3k
output_1:
1315
    // Duplicate the last row twice more
1316
21.3k
    sumsq5_ptrs[3] = sumsq5_ptrs[2];
1317
21.3k
    sumsq5_ptrs[4] = sumsq5_ptrs[2];
1318
21.3k
    sum5_ptrs[3] = sum5_ptrs[2];
1319
21.3k
    sum5_ptrs[4] = sum5_ptrs[2];
1320
1321
21.3k
    sumsq3_ptrs[2] = sumsq3_ptrs[1];
1322
21.3k
    sum3_ptrs[2] = sum3_ptrs[1];
1323
1324
21.3k
    sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1325
21.3k
                  w, params->sgr.s0, BITDEPTH_MAX);
1326
21.3k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1327
21.3k
                  w, params->sgr.s1, BITDEPTH_MAX);
1328
21.3k
    rotate(A3_ptrs, B3_ptrs, 4);
1329
    // Output only one row
1330
21.3k
    sgr_finish_mix(&dst, stride, A5_ptrs, B5_ptrs, A3_ptrs, B3_ptrs,
1331
21.3k
                   w, 1, params->sgr.w0, params->sgr.w1
1332
21.3k
                   HIGHBD_TAIL_SUFFIX);
1333
21.3k
    return;
1334
1335
7.27k
vert_1:
1336
    // Copy the last row as padding once
1337
7.27k
    sumsq5_ptrs[4] = sumsq5_ptrs[3];
1338
7.27k
    sum5_ptrs[4] = sum5_ptrs[3];
1339
1340
7.27k
    sumsq3_ptrs[2] = sumsq3_ptrs[1];
1341
7.27k
    sum3_ptrs[2] = sum3_ptrs[1];
1342
1343
7.27k
    sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1344
7.27k
                  w, params->sgr.s0, BITDEPTH_MAX);
1345
7.27k
    rotate(A5_ptrs, B5_ptrs, 2);
1346
7.27k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1347
7.27k
                  w, params->sgr.s1, BITDEPTH_MAX);
1348
7.27k
    rotate(A3_ptrs, B3_ptrs, 4);
1349
1350
7.27k
    goto output_1;
1351
14.0k
}
1352
1353
#if HAVE_ASM
1354
#if ARCH_AARCH64 || ARCH_ARM
1355
#include "src/arm/looprestoration.h"
1356
#elif ARCH_LOONGARCH64
1357
#include "src/loongarch/looprestoration.h"
1358
#elif ARCH_PPC64LE
1359
#include "src/ppc/looprestoration.h"
1360
#elif ARCH_X86
1361
#include "src/x86/looprestoration.h"
1362
#endif
1363
#endif
1364
1365
COLD void bitfn(dav1d_loop_restoration_dsp_init)(Dav1dLoopRestorationDSPContext *const c,
1366
                                                 const int bpc)
1367
87.5k
{
1368
87.5k
    c->wiener[0] = c->wiener[1] = wiener_c;
1369
87.5k
    c->sgr[0] = sgr_5x5_c;
1370
87.5k
    c->sgr[1] = sgr_3x3_c;
1371
87.5k
    c->sgr[2] = sgr_mix_c;
1372
1373
#if HAVE_ASM
1374
#if ARCH_AARCH64 || ARCH_ARM
1375
    loop_restoration_dsp_init_arm(c, bpc);
1376
#elif ARCH_LOONGARCH64
1377
    loop_restoration_dsp_init_loongarch(c, bpc);
1378
#elif ARCH_PPC64LE
1379
    loop_restoration_dsp_init_ppc(c, bpc);
1380
#elif ARCH_X86
1381
    loop_restoration_dsp_init_x86(c, bpc);
1382
#endif
1383
#endif
1384
87.5k
}
dav1d_loop_restoration_dsp_init_8bpc
Line
Count
Source
1367
39.7k
{
1368
39.7k
    c->wiener[0] = c->wiener[1] = wiener_c;
1369
39.7k
    c->sgr[0] = sgr_5x5_c;
1370
39.7k
    c->sgr[1] = sgr_3x3_c;
1371
39.7k
    c->sgr[2] = sgr_mix_c;
1372
1373
#if HAVE_ASM
1374
#if ARCH_AARCH64 || ARCH_ARM
1375
    loop_restoration_dsp_init_arm(c, bpc);
1376
#elif ARCH_LOONGARCH64
1377
    loop_restoration_dsp_init_loongarch(c, bpc);
1378
#elif ARCH_PPC64LE
1379
    loop_restoration_dsp_init_ppc(c, bpc);
1380
#elif ARCH_X86
1381
    loop_restoration_dsp_init_x86(c, bpc);
1382
#endif
1383
#endif
1384
39.7k
}
dav1d_loop_restoration_dsp_init_16bpc
Line
Count
Source
1367
47.7k
{
1368
47.7k
    c->wiener[0] = c->wiener[1] = wiener_c;
1369
47.7k
    c->sgr[0] = sgr_5x5_c;
1370
47.7k
    c->sgr[1] = sgr_3x3_c;
1371
47.7k
    c->sgr[2] = sgr_mix_c;
1372
1373
#if HAVE_ASM
1374
#if ARCH_AARCH64 || ARCH_ARM
1375
    loop_restoration_dsp_init_arm(c, bpc);
1376
#elif ARCH_LOONGARCH64
1377
    loop_restoration_dsp_init_loongarch(c, bpc);
1378
#elif ARCH_PPC64LE
1379
    loop_restoration_dsp_init_ppc(c, bpc);
1380
#elif ARCH_X86
1381
    loop_restoration_dsp_init_x86(c, bpc);
1382
#endif
1383
#endif
1384
47.7k
}