Coverage Report

Created: 2026-08-31 06:22

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
5.80M
#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.32M
{
49
5.32M
    const int bitdepth = bitdepth_from_max(bitdepth_max);
50
5.32M
    const int round_bits_h = 3 + (bitdepth == 12) * 2;
51
5.32M
    const int rounding_off_h = 1 << (round_bits_h - 1);
52
5.32M
    const int clip_limit = 1 << (bitdepth + 1 + 7 - round_bits_h);
53
54
5.32M
    if (w < 6) {
55
        // For small widths, do the fully conditional loop with
56
        // conditions on each access.
57
3.00M
        for (int x = 0; x < w; x++) {
58
2.12M
            int sum = (1 << (bitdepth + 6));
59
2.12M
#if BITDEPTH == 8
60
2.12M
            sum += src[x] * 128;
61
2.12M
#endif
62
16.8M
            for (int i = 0; i < 7; i++) {
63
14.7M
                int idx = x + i - 3;
64
14.7M
                if (idx < 0) {
65
3.98M
                    if (!(edges & LR_HAVE_LEFT))
66
4.00M
                        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
10.7M
                } else if (idx >= w && !(edges & LR_HAVE_RIGHT)) {
72
3.89M
                    sum += src[w - 1] * fh[i];
73
3.89M
                } else
74
6.81M
                    sum += src[idx] * fh[i];
75
14.7M
            }
76
2.12M
            sum = iclip((sum + rounding_off_h) >> round_bits_h, 0, clip_limit - 1);
77
2.12M
            dst[x] = sum;
78
2.12M
        }
79
80
884k
        return;
81
884k
    }
82
83
    // For larger widths, do separate loops with less conditions; first
84
    // handle the start of the row.
85
4.44M
    int start = 3;
86
4.44M
    if (!(edges & LR_HAVE_LEFT)) {
87
        // If there's no left edge, pad using the leftmost pixel.
88
8.86M
        for (int x = 0; x < 3; x++) {
89
6.62M
            int sum = (1 << (bitdepth + 6));
90
6.62M
#if BITDEPTH == 8
91
6.62M
            sum += src[x] * 128;
92
6.62M
#endif
93
52.8M
            for (int i = 0; i < 7; i++) {
94
46.2M
                int idx = x + i - 3;
95
46.2M
                if (idx < 0)
96
13.2M
                    sum += src[0] * fh[i];
97
32.9M
                else
98
32.9M
                    sum += src[idx] * fh[i];
99
46.2M
            }
100
6.62M
            sum = iclip((sum + rounding_off_h) >> round_bits_h, 0, clip_limit - 1);
101
6.62M
            dst[x] = sum;
102
6.62M
        }
103
2.24M
    } else if (left) {
104
        // If we have the left edge and a separate left buffer, pad using that.
105
8.17M
        for (int x = 0; x < 3; x++) {
106
6.12M
            int sum = (1 << (bitdepth + 6));
107
6.12M
#if BITDEPTH == 8
108
6.12M
            sum += src[x] * 128;
109
6.12M
#endif
110
48.9M
            for (int i = 0; i < 7; i++) {
111
42.8M
                int idx = x + i - 3;
112
42.8M
                if (idx < 0)
113
12.2M
                    sum += left[0][4 + idx] * fh[i];
114
30.5M
                else
115
30.5M
                    sum += src[idx] * fh[i];
116
42.8M
            }
117
6.12M
            sum = iclip((sum + rounding_off_h) >> round_bits_h, 0, clip_limit - 1);
118
6.12M
            dst[x] = sum;
119
6.12M
        }
120
2.05M
    } 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
147k
        start = 0;
125
147k
    }
126
4.44M
    int end = w - 3;
127
4.44M
    if (edges & LR_HAVE_RIGHT)
128
2.13M
        end = w;
129
130
    // Do a condititon free loop for the bulk of the row.
131
342M
    for (int x = start; x < end; x++) {
132
338M
        int sum = (1 << (bitdepth + 6));
133
338M
#if BITDEPTH == 8
134
338M
        sum += src[x] * 128;
135
338M
#endif
136
2.67G
        for (int i = 0; i < 7; i++) {
137
2.33G
            int idx = x + i - 3;
138
2.33G
            sum += src[idx] * fh[i];
139
2.33G
        }
140
338M
        sum = iclip((sum + rounding_off_h) >> round_bits_h, 0, clip_limit - 1);
141
338M
        dst[x] = sum;
142
338M
    }
143
144
    // If we need to, calculate the end of the row with a condition for
145
    // right edge padding.
146
11.0M
    for (int x = end; x < w; x++) {
147
6.58M
        int sum = (1 << (bitdepth + 6));
148
6.58M
#if BITDEPTH == 8
149
6.58M
        sum += src[x] * 128;
150
6.58M
#endif
151
52.5M
        for (int i = 0; i < 7; i++) {
152
46.0M
            int idx = x + i - 3;
153
46.0M
            if (idx >= w)
154
13.1M
                sum += src[w - 1] * fh[i];
155
32.9M
            else
156
32.9M
                sum += src[idx] * fh[i];
157
46.0M
        }
158
6.58M
        sum = iclip((sum + rounding_off_h) >> round_bits_h, 0, clip_limit - 1);
159
6.58M
        dst[x] = sum;
160
6.58M
    }
161
4.44M
}
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
230k
{
166
230k
    const int bitdepth = bitdepth_from_max(bitdepth_max);
167
168
230k
    const int round_bits_v = 11 - (bitdepth == 12) * 2;
169
230k
    const int rounding_off_v = 1 << (round_bits_v - 1);
170
230k
    const int round_offset = 1 << (bitdepth + (round_bits_v - 1));
171
172
14.5M
    for (int i = 0; i < w; i++) {
173
14.2M
        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
99.9M
        for (int k = 0; k < 6; k++)
181
85.7M
            sum += ptrs[k][i] * fv[k];
182
14.2M
        sum += ptrs[5][i] * fv[6];
183
184
14.2M
        p[i] = iclip_pixel((sum + rounding_off_v) >> round_bits_v);
185
14.2M
    }
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.38M
    for (int i = 0; i < 5; i++)
190
1.15M
        ptrs[i] = ptrs[i + 1];
191
230k
}
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
4.76M
{
198
4.76M
    const int bitdepth = bitdepth_from_max(bitdepth_max);
199
200
4.76M
    const int round_bits_v = 11 - (bitdepth == 12) * 2;
201
4.76M
    const int rounding_off_v = 1 << (round_bits_v - 1);
202
4.76M
    const int round_offset = 1 << (bitdepth + (round_bits_v - 1));
203
204
4.76M
    const int16_t *fh = filter[0];
205
4.76M
    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
4.76M
    uint16_t tmp[REST_UNIT_STRIDE];
214
4.76M
    wiener_filter_h(tmp, left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
215
216
324M
    for (int i = 0; i < w; i++) {
217
319M
        int sum = -round_offset;
218
219
        // Filter using the 6 stored preexisting rows, and the newly
220
        // filtered one in tmp[].
221
2.22G
        for (int k = 0; k < 6; k++)
222
1.90G
            sum += ptrs[k][i] * fv[k];
223
319M
        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
319M
        p[i] = iclip_pixel((sum + rounding_off_v) >> round_bits_v);
228
319M
    }
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
4.76M
    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
33.3M
    for (int i = 0; i < 6; i++)
240
28.5M
        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
4.76M
    ptrs[6] = ptrs[0];
246
4.76M
}
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
153k
{
256
    // Values stored between horizontal and vertical filtering don't
257
    // fit in a uint8_t.
258
153k
    uint16_t hor[6 * REST_UNIT_STRIDE];
259
153k
    uint16_t *ptrs[7], *rows[6];
260
1.07M
    for (int i = 0; i < 6; i++)
261
920k
        rows[i] = &hor[i * REST_UNIT_STRIDE];
262
153k
    const int16_t (*const filter)[8] = params->filter;
263
153k
    const int16_t *fh = params->filter[0];
264
153k
    const int16_t *fv = params->filter[1];
265
153k
    const pixel *lpf_bottom = lpf + 6*PXSTRIDE(stride);
266
267
153k
    const pixel *src = p;
268
153k
    if (edges & LR_HAVE_TOP) {
269
86.7k
        ptrs[0] = rows[0];
270
86.7k
        ptrs[1] = rows[0];
271
86.7k
        ptrs[2] = rows[1];
272
86.7k
        ptrs[3] = rows[2];
273
86.7k
        ptrs[4] = rows[2];
274
86.7k
        ptrs[5] = rows[2];
275
276
86.7k
        wiener_filter_h(rows[0], NULL, lpf, fh, w, edges HIGHBD_TAIL_SUFFIX);
277
86.7k
        lpf += PXSTRIDE(stride);
278
86.7k
        wiener_filter_h(rows[1], NULL, lpf, fh, w, edges HIGHBD_TAIL_SUFFIX);
279
280
86.7k
        wiener_filter_h(rows[2], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
281
86.7k
        left++;
282
86.7k
        src += PXSTRIDE(stride);
283
284
86.7k
        if (--h <= 0)
285
1.53k
            goto v1;
286
287
85.1k
        ptrs[4] = ptrs[5] = rows[3];
288
85.1k
        wiener_filter_h(rows[3], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
289
85.1k
        left++;
290
85.1k
        src += PXSTRIDE(stride);
291
292
85.1k
        if (--h <= 0)
293
816
            goto v2;
294
295
84.3k
        ptrs[5] = rows[4];
296
84.3k
        wiener_filter_h(rows[4], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
297
84.3k
        left++;
298
84.3k
        src += PXSTRIDE(stride);
299
300
84.3k
        if (--h <= 0)
301
571
            goto v3;
302
84.3k
    } else {
303
66.7k
        ptrs[0] = rows[0];
304
66.7k
        ptrs[1] = rows[0];
305
66.7k
        ptrs[2] = rows[0];
306
66.7k
        ptrs[3] = rows[0];
307
66.7k
        ptrs[4] = rows[0];
308
66.7k
        ptrs[5] = rows[0];
309
310
66.7k
        wiener_filter_h(rows[0], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
311
66.7k
        left++;
312
66.7k
        src += PXSTRIDE(stride);
313
314
66.7k
        if (--h <= 0)
315
21.2k
            goto v1;
316
317
45.5k
        ptrs[4] = ptrs[5] = rows[1];
318
45.5k
        wiener_filter_h(rows[1], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
319
45.5k
        left++;
320
45.5k
        src += PXSTRIDE(stride);
321
322
45.5k
        if (--h <= 0)
323
8.77k
            goto v2;
324
325
36.7k
        ptrs[5] = rows[2];
326
36.7k
        wiener_filter_h(rows[2], left, src, fh, w, edges HIGHBD_TAIL_SUFFIX);
327
36.7k
        left++;
328
36.7k
        src += PXSTRIDE(stride);
329
330
36.7k
        if (--h <= 0)
331
2.90k
            goto v3;
332
333
33.8k
        ptrs[6] = rows[3];
334
33.8k
        wiener_filter_hv(p, ptrs, left, src, filter, w, edges
335
33.8k
                         HIGHBD_TAIL_SUFFIX);
336
33.8k
        left++;
337
33.8k
        src += PXSTRIDE(stride);
338
33.8k
        p += PXSTRIDE(stride);
339
340
33.8k
        if (--h <= 0)
341
2.92k
            goto v3;
342
343
30.9k
        ptrs[6] = rows[4];
344
30.9k
        wiener_filter_hv(p, ptrs, left, src, filter, w, edges
345
30.9k
                         HIGHBD_TAIL_SUFFIX);
346
30.9k
        left++;
347
30.9k
        src += PXSTRIDE(stride);
348
30.9k
        p += PXSTRIDE(stride);
349
350
30.9k
        if (--h <= 0)
351
2.46k
            goto v3;
352
30.9k
    }
353
354
112k
    ptrs[6] = ptrs[5] + REST_UNIT_STRIDE;
355
4.53M
    do {
356
4.53M
        wiener_filter_hv(p, ptrs, left, src, filter, w, edges
357
4.53M
                         HIGHBD_TAIL_SUFFIX);
358
4.53M
        left++;
359
4.53M
        src += PXSTRIDE(stride);
360
4.53M
        p += PXSTRIDE(stride);
361
4.53M
    } while (--h > 0);
362
363
112k
    if (!(edges & LR_HAVE_BOTTOM))
364
24.7k
        goto v3;
365
366
87.5k
    wiener_filter_hv(p, ptrs, NULL, lpf_bottom, filter, w, edges
367
87.5k
                     HIGHBD_TAIL_SUFFIX);
368
87.5k
    lpf_bottom += PXSTRIDE(stride);
369
87.5k
    p += PXSTRIDE(stride);
370
371
87.5k
    wiener_filter_hv(p, ptrs, NULL, lpf_bottom, filter, w, edges
372
87.5k
                     HIGHBD_TAIL_SUFFIX);
373
87.5k
    p += PXSTRIDE(stride);
374
153k
v1:
375
153k
    wiener_filter_v(p, ptrs, fv, w HIGHBD_TAIL_SUFFIX);
376
377
153k
    return;
378
379
33.5k
v3:
380
33.5k
    wiener_filter_v(p, ptrs, fv, w HIGHBD_TAIL_SUFFIX);
381
33.5k
    p += PXSTRIDE(stride);
382
43.1k
v2:
383
43.1k
    wiener_filter_v(p, ptrs, fv, w HIGHBD_TAIL_SUFFIX);
384
43.1k
    p += PXSTRIDE(stride);
385
43.1k
    goto v1;
386
33.5k
}
387
388
// SGR
389
static NOINLINE void rotate(int32_t **sumsq_ptrs, coef **sum_ptrs, int n)
390
11.9M
{
391
11.9M
    int32_t *tmp32 = sumsq_ptrs[0];
392
11.9M
    coef *tmpc = sum_ptrs[0];
393
36.7M
    for (int i = 0; i < n - 1; i++) {
394
24.8M
        sumsq_ptrs[i] = sumsq_ptrs[i + 1];
395
24.8M
        sum_ptrs[i] = sum_ptrs[i + 1];
396
24.8M
    }
397
11.9M
    sumsq_ptrs[n - 1] = tmp32;
398
11.9M
    sum_ptrs[n - 1] = tmpc;
399
11.9M
}
400
401
static NOINLINE void rotate5_x2(int32_t **sumsq_ptrs, coef **sum_ptrs)
402
2.67M
{
403
2.67M
    int32_t *tmp32[2];
404
2.67M
    coef *tmpc[2];
405
8.01M
    for (int i = 0; i < 2; i++) {
406
5.34M
        tmp32[i] = sumsq_ptrs[i];
407
5.34M
        tmpc[i] = sum_ptrs[i];
408
5.34M
    }
409
10.7M
    for (int i = 0; i < 3; i++) {
410
8.05M
        sumsq_ptrs[i] = sumsq_ptrs[i + 2];
411
8.05M
        sum_ptrs[i] = sum_ptrs[i + 2];
412
8.05M
    }
413
8.07M
    for (int i = 0; i < 2; i++) {
414
5.40M
        sumsq_ptrs[3 + i] = tmp32[i];
415
5.40M
        sum_ptrs[3 + i] = tmpc[i];
416
5.40M
    }
417
2.67M
}
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
4.98M
{
424
4.98M
    sumsq++;
425
4.98M
    sum++;
426
4.98M
    int a = edges & LR_HAVE_LEFT ? (left ? left[0][2] : src[-2]) : src[0];
427
4.98M
    int b = edges & LR_HAVE_LEFT ? (left ? left[0][3] : src[-1]) : src[0];
428
311M
    for (int x = -1; x < w + 1; x++) {
429
306M
        int c = (x + 1 < w || (edges & LR_HAVE_RIGHT)) ? src[x + 1] : src[w - 1];
430
306M
        sum[x] = a + b + c;
431
306M
        sumsq[x] = a * a + b * b + c * c;
432
306M
        a = b;
433
306M
        b = c;
434
306M
    }
435
4.98M
}
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.40M
{
442
5.40M
    sumsq++;
443
5.40M
    sum++;
444
5.40M
    int a = edges & LR_HAVE_LEFT ? (left ? left[0][1] : src[-3]) : src[0];
445
5.40M
    int b = edges & LR_HAVE_LEFT ? (left ? left[0][2] : src[-2]) : src[0];
446
5.40M
    int c = edges & LR_HAVE_LEFT ? (left ? left[0][3] : src[-1]) : src[0];
447
5.40M
    int d = src[0];
448
335M
    for (int x = -1; x < w + 1; x++) {
449
329M
        int e = (x + 2 < w || (edges & LR_HAVE_RIGHT)) ? src[x + 2] : src[w - 1];
450
329M
        sum[x] = a + b + c + d + e;
451
329M
        sumsq[x] = a * a + b * b + c * c + d * d + e * e;
452
329M
        a = b;
453
329M
        b = c;
454
329M
        c = d;
455
329M
        d = e;
456
329M
    }
457
5.40M
}
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
3.76M
{
465
3.76M
    sgr_box3_row_h(sumsq3, sum3, left, src, w, edges);
466
3.76M
    sgr_box5_row_h(sumsq5, sum5, left, src, w, edges);
467
3.76M
}
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
4.95M
{
473
314M
    for (int x = 0; x < w + 2; x++) {
474
309M
        int sq_a = sumsq[0][x];
475
309M
        int sq_b = sumsq[1][x];
476
309M
        int sq_c = sumsq[2][x];
477
309M
        int s_a = sum[0][x];
478
309M
        int s_b = sum[1][x];
479
309M
        int s_c = sum[2][x];
480
309M
        sumsq_out[x] = sq_a + sq_b + sq_c;
481
309M
        sum_out[x] = s_a + s_b + s_c;
482
309M
    }
483
4.95M
}
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.73M
{
489
173M
    for (int x = 0; x < w + 2; x++) {
490
170M
        int sq_a = sumsq[0][x];
491
170M
        int sq_b = sumsq[1][x];
492
170M
        int sq_c = sumsq[2][x];
493
170M
        int sq_d = sumsq[3][x];
494
170M
        int sq_e = sumsq[4][x];
495
170M
        int s_a = sum[0][x];
496
170M
        int s_b = sum[1][x];
497
170M
        int s_c = sum[2][x];
498
170M
        int s_d = sum[3][x];
499
170M
        int s_e = sum[4][x];
500
170M
        sumsq_out[x] = sq_a + sq_b + sq_c + sq_d + sq_e;
501
170M
        sum_out[x] = s_a + s_b + s_c + s_d + s_e;
502
170M
    }
503
2.73M
}
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
7.72M
{
508
7.72M
    const int bitdepth_min_8 = bitdepth_from_max(bitdepth_max) - 8;
509
404M
    for (int i = 0; i < w + 2; i++) {
510
397M
        const int a =
511
397M
            (AA[i] + ((1 << (2 * bitdepth_min_8)) >> 1)) >> (2 * bitdepth_min_8);
512
397M
        const int b =
513
397M
            (BB[i] + ((1 << bitdepth_min_8) >> 1)) >> bitdepth_min_8;
514
515
397M
        const unsigned p = imax(a * n - b * b, 0);
516
397M
        const unsigned z = (p * s + (1 << 19)) >> 20;
517
397M
        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
397M
        AA[i] = (x * BB[i] * sgr_one_by_x + (1 << 11)) >> 12;
521
397M
        BB[i] = x;
522
397M
    }
523
7.72M
}
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
4.94M
{
529
4.94M
    sgr_box3_row_v(sumsq, sum, sumsq_out, sum_out, w);
530
4.94M
    sgr_calc_row_ab(sumsq_out, sum_out, w, s, bitdepth_max, 9, 455);
531
4.94M
    rotate(sumsq, sum, 3);
532
4.94M
}
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.73M
{
538
2.73M
    sgr_box5_row_v(sumsq, sum, sumsq_out, sum_out, w);
539
2.73M
    sgr_calc_row_ab(sumsq_out, sum_out, w, s, bitdepth_max, 25, 164);
540
2.73M
    rotate5_x2(sumsq, sum);
541
2.73M
}
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.24M
{
551
1.24M
    sgr_box3_row_h(sumsq[2], sum[2], left, src, w, edges);
552
1.24M
    sgr_box3_vert(sumsq, sum, AA, BB, w, s, bitdepth_max);
553
1.24M
}
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
4.76M
{
560
4.76M
#define EIGHT_NEIGHBORS(P, i)\
561
572M
    ((P[1][i] + P[1][i - 1] + P[1][i + 1] + P[0][i] + P[2][i]) * 4 + \
562
572M
     (P[0][i - 1] + P[2][i - 1] +                           \
563
572M
      P[0][i + 1] + P[2][i + 1]) * 3)
564
291M
    for (int i = 0; i < w; i++) {
565
286M
        const int a = EIGHT_NEIGHBORS(B_ptrs, i + 1);
566
286M
        const int b = EIGHT_NEIGHBORS(A_ptrs, i + 1);
567
286M
        tmp[i] = (b - a * src[i] + (1 << 8)) >> 9;
568
286M
    }
569
4.76M
#undef EIGHT_NEIGHBORS
570
4.76M
}
571
572
12.2M
#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.59M
{
580
2.59M
#define SIX_NEIGHBORS(P, i)\
581
314M
    ((P[0][i]     + P[1][i]) * 6 +   \
582
314M
     (P[0][i - 1] + P[1][i - 1] +    \
583
314M
      P[0][i + 1] + P[1][i + 1]) * 5)
584
159M
    for (int i = 0; i < w; i++) {
585
157M
        const int a = SIX_NEIGHBORS(B_ptrs, i + 1);
586
157M
        const int b = SIX_NEIGHBORS(A_ptrs, i + 1);
587
157M
        tmp[i] = (b - a * src[i] + (1 << 8)) >> 9;
588
157M
    }
589
2.59M
    if (h <= 1)
590
28.0k
        return;
591
2.56M
    tmp += FILTER_OUT_STRIDE;
592
2.56M
    src += PXSTRIDE(src_stride);
593
2.56M
    const int32_t *A = &A_ptrs[1][1];
594
2.56M
    const coef *B = &B_ptrs[1][1];
595
159M
    for (int i = 0; i < w; i++) {
596
156M
        const int a = B[i] * 6 + (B[i - 1] + B[i + 1]) * 5;
597
156M
        const int b = A[i] * 6 + (A[i - 1] + A[i + 1]) * 5;
598
156M
        tmp[i] = (b - a * src[i] + (1 << 7)) >> 8;
599
156M
    }
600
2.56M
#undef SIX_NEIGHBORS
601
2.56M
}
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.78M
{
606
155M
    for (int i = 0; i < w; i++) {
607
152M
        const int v = w1 * t1[i];
608
152M
        dst[i] = iclip_pixel(dst[i] + ((v + (1 << 10)) >> 11));
609
152M
    }
610
2.78M
}
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.82M
{
617
5.37M
    for (int j = 0; j < h; j++) {
618
197M
        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.55M
        dst += PXSTRIDE(dst_stride);
623
3.55M
        t1 += FILTER_OUT_STRIDE;
624
3.55M
        t2 += FILTER_OUT_STRIDE;
625
3.55M
    }
626
1.82M
}
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.22M
{
632
    // Only one single row, no stride needed
633
1.22M
    ALIGN_STK_16(coef, tmp, 384,);
634
635
1.22M
    sgr_finish_filter_row1(tmp, *dst, A_ptrs, B_ptrs, w);
636
1.22M
    sgr_weighted_row1(*dst, tmp, w, w1 HIGHBD_TAIL_SUFFIX);
637
1.22M
    *dst += PXSTRIDE(stride);
638
1.22M
    rotate(A_ptrs, B_ptrs, 3);
639
1.22M
}
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
805k
{
646
805k
    ALIGN_STK_16(coef, tmp, 2*FILTER_OUT_STRIDE,);
647
648
805k
    sgr_finish_filter2(tmp, *dst, stride, A_ptrs, B_ptrs, w, h);
649
805k
    sgr_weighted_row1(*dst, tmp, w, w1 HIGHBD_TAIL_SUFFIX);
650
805k
    *dst += PXSTRIDE(stride);
651
805k
    if (h > 1) {
652
776k
        sgr_weighted_row1(*dst, tmp + FILTER_OUT_STRIDE, w, w1 HIGHBD_TAIL_SUFFIX);
653
776k
        *dst += PXSTRIDE(stride);
654
776k
    }
655
805k
    rotate(A_ptrs, B_ptrs, 2);
656
805k
}
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.80M
{
664
1.80M
    ALIGN_STK_16(coef, tmp5, 2*FILTER_OUT_STRIDE,);
665
1.80M
    ALIGN_STK_16(coef, tmp3, 2*FILTER_OUT_STRIDE,);
666
667
1.80M
    sgr_finish_filter2(tmp5, *dst, stride, A5_ptrs, B5_ptrs, w, h);
668
1.80M
    sgr_finish_filter_row1(tmp3, *dst, A3_ptrs, B3_ptrs, w);
669
1.80M
    if (h > 1)
670
1.79M
        sgr_finish_filter_row1(tmp3 + FILTER_OUT_STRIDE, *dst + PXSTRIDE(stride),
671
1.79M
                               &A3_ptrs[1], &B3_ptrs[1], w);
672
1.80M
    sgr_weighted2(*dst, stride, tmp5, tmp3, w, h, w0, w1 HIGHBD_TAIL_SUFFIX);
673
1.80M
    *dst += h*PXSTRIDE(stride);
674
1.80M
    rotate(A5_ptrs, B5_ptrs, 2);
675
1.80M
    rotate(A3_ptrs, B3_ptrs, 4);
676
1.80M
}
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
31.3k
{
685
3.52M
#define BUF_STRIDE (384 + 16)
686
31.3k
    ALIGN_STK_16(int32_t, sumsq_buf, BUF_STRIDE * 3 + 16,);
687
31.3k
    ALIGN_STK_16(coef, sum_buf, BUF_STRIDE * 3 + 16,);
688
31.3k
    int32_t *sumsq_ptrs[3], *sumsq_rows[3];
689
31.3k
    coef *sum_ptrs[3], *sum_rows[3];
690
125k
    for (int i = 0; i < 3; i++) {
691
93.9k
        sumsq_rows[i] = &sumsq_buf[i * BUF_STRIDE];
692
93.9k
        sum_rows[i] = &sum_buf[i * BUF_STRIDE];
693
93.9k
    }
694
695
31.3k
    ALIGN_STK_16(int32_t, A_buf, BUF_STRIDE * 3 + 16,);
696
31.3k
    ALIGN_STK_16(coef, B_buf, BUF_STRIDE * 3 + 16,);
697
31.3k
    int32_t *A_ptrs[3];
698
31.3k
    coef *B_ptrs[3];
699
125k
    for (int i = 0; i < 3; i++) {
700
93.9k
        A_ptrs[i] = &A_buf[i * BUF_STRIDE];
701
93.9k
        B_ptrs[i] = &B_buf[i * BUF_STRIDE];
702
93.9k
    }
703
31.3k
    const pixel *src = dst;
704
31.3k
    const pixel *lpf_bottom = lpf + 6*PXSTRIDE(stride);
705
706
31.3k
    if (edges & LR_HAVE_TOP) {
707
22.5k
        sumsq_ptrs[0] = sumsq_rows[0];
708
22.5k
        sumsq_ptrs[1] = sumsq_rows[1];
709
22.5k
        sumsq_ptrs[2] = sumsq_rows[2];
710
22.5k
        sum_ptrs[0] = sum_rows[0];
711
22.5k
        sum_ptrs[1] = sum_rows[1];
712
22.5k
        sum_ptrs[2] = sum_rows[2];
713
714
22.5k
        sgr_box3_row_h(sumsq_rows[0], sum_rows[0], NULL, lpf, w, edges);
715
22.5k
        lpf += PXSTRIDE(stride);
716
22.5k
        sgr_box3_row_h(sumsq_rows[1], sum_rows[1], NULL, lpf, w, edges);
717
718
22.5k
        sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
719
22.5k
                    left, src, w, params->sgr.s1, edges, BITDEPTH_MAX);
720
22.5k
        left++;
721
22.5k
        src += PXSTRIDE(stride);
722
22.5k
        rotate(A_ptrs, B_ptrs, 3);
723
724
22.5k
        if (--h <= 0)
725
395
            goto vert_1;
726
727
22.1k
        sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
728
22.1k
                    left, src, w, params->sgr.s1, edges, BITDEPTH_MAX);
729
22.1k
        left++;
730
22.1k
        src += PXSTRIDE(stride);
731
22.1k
        rotate(A_ptrs, B_ptrs, 3);
732
733
22.1k
        if (--h <= 0)
734
347
            goto vert_2;
735
22.1k
    } else {
736
8.76k
        sumsq_ptrs[0] = sumsq_rows[0];
737
8.76k
        sumsq_ptrs[1] = sumsq_rows[0];
738
8.76k
        sumsq_ptrs[2] = sumsq_rows[0];
739
8.76k
        sum_ptrs[0] = sum_rows[0];
740
8.76k
        sum_ptrs[1] = sum_rows[0];
741
8.76k
        sum_ptrs[2] = sum_rows[0];
742
743
8.76k
        sgr_box3_row_h(sumsq_rows[0], sum_rows[0], left, src, w, edges);
744
8.76k
        left++;
745
8.76k
        src += PXSTRIDE(stride);
746
747
8.76k
        sgr_box3_vert(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
748
8.76k
                      w, params->sgr.s1, BITDEPTH_MAX);
749
8.76k
        rotate(A_ptrs, B_ptrs, 3);
750
751
8.76k
        if (--h <= 0)
752
1.50k
            goto vert_1;
753
754
7.25k
        sumsq_ptrs[2] = sumsq_rows[1];
755
7.25k
        sum_ptrs[2] = sum_rows[1];
756
757
7.25k
        sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
758
7.25k
                    left, src, w, params->sgr.s1, edges, BITDEPTH_MAX);
759
7.25k
        left++;
760
7.25k
        src += PXSTRIDE(stride);
761
7.25k
        rotate(A_ptrs, B_ptrs, 3);
762
763
7.25k
        if (--h <= 0)
764
1.32k
            goto vert_2;
765
766
5.93k
        sumsq_ptrs[2] = sumsq_rows[2];
767
5.93k
        sum_ptrs[2] = sum_rows[2];
768
5.93k
    }
769
770
1.16M
    do {
771
1.16M
        sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
772
1.16M
                    left, src, w, params->sgr.s1, edges, BITDEPTH_MAX);
773
1.16M
        left++;
774
1.16M
        src += PXSTRIDE(stride);
775
776
1.16M
        sgr_finish1(&dst, stride, A_ptrs, B_ptrs,
777
1.16M
                    w, params->sgr.w1 HIGHBD_TAIL_SUFFIX);
778
1.16M
    } while (--h > 0);
779
780
27.7k
    if (!(edges & LR_HAVE_BOTTOM))
781
7.28k
        goto vert_2;
782
783
20.4k
    sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
784
20.4k
                NULL, lpf_bottom, w, params->sgr.s1, edges, BITDEPTH_MAX);
785
20.4k
    lpf_bottom += PXSTRIDE(stride);
786
787
20.4k
    sgr_finish1(&dst, stride, A_ptrs, B_ptrs,
788
20.4k
                w, params->sgr.w1 HIGHBD_TAIL_SUFFIX);
789
790
20.4k
    sgr_box3_hv(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
791
20.4k
                NULL, lpf_bottom, w, params->sgr.s1, edges, BITDEPTH_MAX);
792
793
20.4k
    sgr_finish1(&dst, stride, A_ptrs, B_ptrs,
794
20.4k
                w, params->sgr.w1 HIGHBD_TAIL_SUFFIX);
795
20.4k
    return;
796
797
8.95k
vert_2:
798
8.95k
    sumsq_ptrs[2] = sumsq_ptrs[1];
799
8.95k
    sum_ptrs[2] = sum_ptrs[1];
800
8.95k
    sgr_box3_vert(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
801
8.95k
                  w, params->sgr.s1, BITDEPTH_MAX);
802
803
8.95k
    sgr_finish1(&dst, stride, A_ptrs, B_ptrs,
804
8.95k
                w, params->sgr.w1 HIGHBD_TAIL_SUFFIX);
805
806
10.8k
output_1:
807
10.8k
    sumsq_ptrs[2] = sumsq_ptrs[1];
808
10.8k
    sum_ptrs[2] = sum_ptrs[1];
809
10.8k
    sgr_box3_vert(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
810
10.8k
                  w, params->sgr.s1, BITDEPTH_MAX);
811
812
10.8k
    sgr_finish1(&dst, stride, A_ptrs, B_ptrs,
813
10.8k
                w, params->sgr.w1 HIGHBD_TAIL_SUFFIX);
814
10.8k
    return;
815
816
1.90k
vert_1:
817
1.90k
    sumsq_ptrs[2] = sumsq_ptrs[1];
818
1.90k
    sum_ptrs[2] = sum_ptrs[1];
819
1.90k
    sgr_box3_vert(sumsq_ptrs, sum_ptrs, A_ptrs[2], B_ptrs[2],
820
1.90k
                  w, params->sgr.s1, BITDEPTH_MAX);
821
1.90k
    rotate(A_ptrs, B_ptrs, 3);
822
1.90k
    goto output_1;
823
8.95k
}
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
40.0k
{
831
40.0k
    ALIGN_STK_16(int32_t, sumsq_buf, BUF_STRIDE * 5 + 16,);
832
40.0k
    ALIGN_STK_16(coef, sum_buf, BUF_STRIDE * 5 + 16,);
833
40.0k
    int32_t *sumsq_ptrs[5], *sumsq_rows[5];
834
40.0k
    coef *sum_ptrs[5], *sum_rows[5];
835
240k
    for (int i = 0; i < 5; i++) {
836
200k
        sumsq_rows[i] = &sumsq_buf[i * BUF_STRIDE];
837
200k
        sum_rows[i] = &sum_buf[i * BUF_STRIDE];
838
200k
    }
839
840
40.0k
    ALIGN_STK_16(int32_t, A_buf, BUF_STRIDE * 2 + 16,);
841
40.0k
    ALIGN_STK_16(coef, B_buf, BUF_STRIDE * 2 + 16,);
842
40.0k
    int32_t *A_ptrs[2];
843
40.0k
    coef *B_ptrs[2];
844
120k
    for (int i = 0; i < 2; i++) {
845
80.1k
        A_ptrs[i] = &A_buf[i * BUF_STRIDE];
846
80.1k
        B_ptrs[i] = &B_buf[i * BUF_STRIDE];
847
80.1k
    }
848
40.0k
    const pixel *src = dst;
849
40.0k
    const pixel *lpf_bottom = lpf + 6*PXSTRIDE(stride);
850
851
40.0k
    if (edges & LR_HAVE_TOP) {
852
26.7k
        sumsq_ptrs[0] = sumsq_rows[0];
853
26.7k
        sumsq_ptrs[1] = sumsq_rows[0];
854
26.7k
        sumsq_ptrs[2] = sumsq_rows[1];
855
26.7k
        sumsq_ptrs[3] = sumsq_rows[2];
856
26.7k
        sumsq_ptrs[4] = sumsq_rows[3];
857
26.7k
        sum_ptrs[0] = sum_rows[0];
858
26.7k
        sum_ptrs[1] = sum_rows[0];
859
26.7k
        sum_ptrs[2] = sum_rows[1];
860
26.7k
        sum_ptrs[3] = sum_rows[2];
861
26.7k
        sum_ptrs[4] = sum_rows[3];
862
863
26.7k
        sgr_box5_row_h(sumsq_rows[0], sum_rows[0], NULL, lpf, w, edges);
864
26.7k
        lpf += PXSTRIDE(stride);
865
26.7k
        sgr_box5_row_h(sumsq_rows[1], sum_rows[1], NULL, lpf, w, edges);
866
867
26.7k
        sgr_box5_row_h(sumsq_rows[2], sum_rows[2], left, src, w, edges);
868
26.7k
        left++;
869
26.7k
        src += PXSTRIDE(stride);
870
871
26.7k
        if (--h <= 0)
872
478
            goto vert_1;
873
874
26.3k
        sgr_box5_row_h(sumsq_rows[3], sum_rows[3], left, src, w, edges);
875
26.3k
        left++;
876
26.3k
        src += PXSTRIDE(stride);
877
26.3k
        sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
878
26.3k
                      w, params->sgr.s0, BITDEPTH_MAX);
879
26.3k
        rotate(A_ptrs, B_ptrs, 2);
880
881
26.3k
        if (--h <= 0)
882
519
            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
25.8k
        sumsq_ptrs[3] = sumsq_rows[4];
887
25.8k
        sum_ptrs[3] = sum_rows[4];
888
25.8k
    } else {
889
13.2k
        sumsq_ptrs[0] = sumsq_rows[0];
890
13.2k
        sumsq_ptrs[1] = sumsq_rows[0];
891
13.2k
        sumsq_ptrs[2] = sumsq_rows[0];
892
13.2k
        sumsq_ptrs[3] = sumsq_rows[0];
893
13.2k
        sumsq_ptrs[4] = sumsq_rows[0];
894
13.2k
        sum_ptrs[0] = sum_rows[0];
895
13.2k
        sum_ptrs[1] = sum_rows[0];
896
13.2k
        sum_ptrs[2] = sum_rows[0];
897
13.2k
        sum_ptrs[3] = sum_rows[0];
898
13.2k
        sum_ptrs[4] = sum_rows[0];
899
900
13.2k
        sgr_box5_row_h(sumsq_rows[0], sum_rows[0], left, src, w, edges);
901
13.2k
        left++;
902
13.2k
        src += PXSTRIDE(stride);
903
904
13.2k
        if (--h <= 0)
905
1.57k
            goto vert_1;
906
907
11.7k
        sumsq_ptrs[4] = sumsq_rows[1];
908
11.7k
        sum_ptrs[4] = sum_rows[1];
909
910
11.7k
        sgr_box5_row_h(sumsq_rows[1], sum_rows[1], left, src, w, edges);
911
11.7k
        left++;
912
11.7k
        src += PXSTRIDE(stride);
913
914
11.7k
        sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
915
11.7k
                      w, params->sgr.s0, BITDEPTH_MAX);
916
11.7k
        rotate(A_ptrs, B_ptrs, 2);
917
918
11.7k
        if (--h <= 0)
919
1.55k
            goto vert_2;
920
921
10.1k
        sumsq_ptrs[3] = sumsq_rows[2];
922
10.1k
        sumsq_ptrs[4] = sumsq_rows[3];
923
10.1k
        sum_ptrs[3] = sum_rows[2];
924
10.1k
        sum_ptrs[4] = sum_rows[3];
925
926
10.1k
        sgr_box5_row_h(sumsq_rows[2], sum_rows[2], left, src, w, edges);
927
10.1k
        left++;
928
10.1k
        src += PXSTRIDE(stride);
929
930
10.1k
        if (--h <= 0)
931
856
            goto odd;
932
933
9.31k
        sgr_box5_row_h(sumsq_rows[3], sum_rows[3], left, src, w, edges);
934
9.31k
        left++;
935
9.31k
        src += PXSTRIDE(stride);
936
937
9.31k
        sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
938
9.31k
                      w, params->sgr.s0, BITDEPTH_MAX);
939
9.31k
        sgr_finish2(&dst, stride, A_ptrs, B_ptrs,
940
9.31k
                    w, 2, params->sgr.w0 HIGHBD_TAIL_SUFFIX);
941
942
9.31k
        if (--h <= 0)
943
867
            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
8.44k
        sumsq_ptrs[3] = sumsq_rows[4];
948
8.44k
        sum_ptrs[3] = sum_rows[4];
949
8.44k
    }
950
951
740k
    do {
952
740k
        sgr_box5_row_h(sumsq_ptrs[3], sum_ptrs[3], left, src, w, edges);
953
740k
        left++;
954
740k
        src += PXSTRIDE(stride);
955
956
740k
        if (--h <= 0)
957
5.04k
            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
29.2k
    if (!(edges & LR_HAVE_BOTTOM))
970
3.32k
        goto vert_2;
971
972
25.8k
    sgr_box5_row_h(sumsq_ptrs[3], sum_ptrs[3], NULL, lpf_bottom, w, edges);
973
25.8k
    lpf_bottom += PXSTRIDE(stride);
974
25.8k
    sgr_box5_row_h(sumsq_ptrs[4], sum_ptrs[4], NULL, lpf_bottom, w, edges);
975
976
32.1k
output_2:
977
32.1k
    sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
978
32.1k
                  w, params->sgr.s0, BITDEPTH_MAX);
979
32.1k
    sgr_finish2(&dst, stride, A_ptrs, B_ptrs,
980
32.1k
                w, 2, params->sgr.w0 HIGHBD_TAIL_SUFFIX);
981
32.1k
    return;
982
983
6.26k
vert_2:
984
    // Duplicate the last row twice more
985
6.26k
    sumsq_ptrs[3] = sumsq_ptrs[2];
986
6.26k
    sumsq_ptrs[4] = sumsq_ptrs[2];
987
6.26k
    sum_ptrs[3] = sum_ptrs[2];
988
6.26k
    sum_ptrs[4] = sum_ptrs[2];
989
6.26k
    goto output_2;
990
991
5.90k
odd:
992
    // Copy the last row as padding once
993
5.90k
    sumsq_ptrs[4] = sumsq_ptrs[3];
994
5.90k
    sum_ptrs[4] = sum_ptrs[3];
995
996
5.90k
    sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
997
5.90k
                  w, params->sgr.s0, BITDEPTH_MAX);
998
5.90k
    sgr_finish2(&dst, stride, A_ptrs, B_ptrs,
999
5.90k
                w, 2, params->sgr.w0 HIGHBD_TAIL_SUFFIX);
1000
1001
7.95k
output_1:
1002
    // Duplicate the last row twice more
1003
7.95k
    sumsq_ptrs[3] = sumsq_ptrs[2];
1004
7.95k
    sumsq_ptrs[4] = sumsq_ptrs[2];
1005
7.95k
    sum_ptrs[3] = sum_ptrs[2];
1006
7.95k
    sum_ptrs[4] = sum_ptrs[2];
1007
1008
7.95k
    sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
1009
7.95k
                  w, params->sgr.s0, BITDEPTH_MAX);
1010
    // Output only one row
1011
7.95k
    sgr_finish2(&dst, stride, A_ptrs, B_ptrs,
1012
7.95k
                w, 1, params->sgr.w0 HIGHBD_TAIL_SUFFIX);
1013
7.95k
    return;
1014
1015
2.04k
vert_1:
1016
    // Copy the last row as padding once
1017
2.04k
    sumsq_ptrs[4] = sumsq_ptrs[3];
1018
2.04k
    sum_ptrs[4] = sum_ptrs[3];
1019
1020
2.04k
    sgr_box5_vert(sumsq_ptrs, sum_ptrs, A_ptrs[1], B_ptrs[1],
1021
2.04k
                  w, params->sgr.s0, BITDEPTH_MAX);
1022
2.04k
    rotate(A_ptrs, B_ptrs, 2);
1023
1024
2.04k
    goto output_1;
1025
5.90k
}
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
92.4k
{
1033
92.4k
    ALIGN_STK_16(int32_t, sumsq5_buf, BUF_STRIDE * 5 + 16,);
1034
92.4k
    ALIGN_STK_16(coef, sum5_buf, BUF_STRIDE * 5 + 16,);
1035
92.4k
    int32_t *sumsq5_ptrs[5], *sumsq5_rows[5];
1036
92.4k
    coef *sum5_ptrs[5], *sum5_rows[5];
1037
554k
    for (int i = 0; i < 5; i++) {
1038
462k
        sumsq5_rows[i] = &sumsq5_buf[i * BUF_STRIDE];
1039
462k
        sum5_rows[i] = &sum5_buf[i * BUF_STRIDE];
1040
462k
    }
1041
92.4k
    ALIGN_STK_16(int32_t, sumsq3_buf, BUF_STRIDE * 3 + 16,);
1042
92.4k
    ALIGN_STK_16(coef, sum3_buf, BUF_STRIDE * 3 + 16,);
1043
92.4k
    int32_t *sumsq3_ptrs[3], *sumsq3_rows[3];
1044
92.4k
    coef *sum3_ptrs[3], *sum3_rows[3];
1045
369k
    for (int i = 0; i < 3; i++) {
1046
277k
        sumsq3_rows[i] = &sumsq3_buf[i * BUF_STRIDE];
1047
277k
        sum3_rows[i] = &sum3_buf[i * BUF_STRIDE];
1048
277k
    }
1049
1050
92.4k
    ALIGN_STK_16(int32_t, A5_buf, BUF_STRIDE * 2 + 16,);
1051
92.4k
    ALIGN_STK_16(coef, B5_buf, BUF_STRIDE * 2 + 16,);
1052
92.4k
    int32_t *A5_ptrs[2];
1053
92.4k
    coef *B5_ptrs[2];
1054
277k
    for (int i = 0; i < 2; i++) {
1055
184k
        A5_ptrs[i] = &A5_buf[i * BUF_STRIDE];
1056
184k
        B5_ptrs[i] = &B5_buf[i * BUF_STRIDE];
1057
184k
    }
1058
92.4k
    ALIGN_STK_16(int32_t, A3_buf, BUF_STRIDE * 4 + 16,);
1059
92.4k
    ALIGN_STK_16(coef, B3_buf, BUF_STRIDE * 4 + 16,);
1060
92.4k
    int32_t *A3_ptrs[4];
1061
92.4k
    coef *B3_ptrs[4];
1062
462k
    for (int i = 0; i < 4; i++) {
1063
369k
        A3_ptrs[i] = &A3_buf[i * BUF_STRIDE];
1064
369k
        B3_ptrs[i] = &B3_buf[i * BUF_STRIDE];
1065
369k
    }
1066
92.4k
    const pixel *src = dst;
1067
92.4k
    const pixel *lpf_bottom = lpf + 6*PXSTRIDE(stride);
1068
1069
92.4k
    if (edges & LR_HAVE_TOP) {
1070
64.5k
        sumsq5_ptrs[0] = sumsq5_rows[0];
1071
64.5k
        sumsq5_ptrs[1] = sumsq5_rows[0];
1072
64.5k
        sumsq5_ptrs[2] = sumsq5_rows[1];
1073
64.5k
        sumsq5_ptrs[3] = sumsq5_rows[2];
1074
64.5k
        sumsq5_ptrs[4] = sumsq5_rows[3];
1075
64.5k
        sum5_ptrs[0] = sum5_rows[0];
1076
64.5k
        sum5_ptrs[1] = sum5_rows[0];
1077
64.5k
        sum5_ptrs[2] = sum5_rows[1];
1078
64.5k
        sum5_ptrs[3] = sum5_rows[2];
1079
64.5k
        sum5_ptrs[4] = sum5_rows[3];
1080
1081
64.5k
        sumsq3_ptrs[0] = sumsq3_rows[0];
1082
64.5k
        sumsq3_ptrs[1] = sumsq3_rows[1];
1083
64.5k
        sumsq3_ptrs[2] = sumsq3_rows[2];
1084
64.5k
        sum3_ptrs[0] = sum3_rows[0];
1085
64.5k
        sum3_ptrs[1] = sum3_rows[1];
1086
64.5k
        sum3_ptrs[2] = sum3_rows[2];
1087
1088
64.5k
        sgr_box35_row_h(sumsq3_rows[0], sum3_rows[0],
1089
64.5k
                        sumsq5_rows[0], sum5_rows[0],
1090
64.5k
                        NULL, lpf, w, edges);
1091
64.5k
        lpf += PXSTRIDE(stride);
1092
64.5k
        sgr_box35_row_h(sumsq3_rows[1], sum3_rows[1],
1093
64.5k
                        sumsq5_rows[1], sum5_rows[1],
1094
64.5k
                        NULL, lpf, w, edges);
1095
1096
64.5k
        sgr_box35_row_h(sumsq3_rows[2], sum3_rows[2],
1097
64.5k
                        sumsq5_rows[2], sum5_rows[2],
1098
64.5k
                        left, src, w, edges);
1099
64.5k
        left++;
1100
64.5k
        src += PXSTRIDE(stride);
1101
1102
64.5k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1103
64.5k
                      w, params->sgr.s1, BITDEPTH_MAX);
1104
64.5k
        rotate(A3_ptrs, B3_ptrs, 4);
1105
1106
64.5k
        if (--h <= 0)
1107
1.07k
            goto vert_1;
1108
1109
63.4k
        sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1110
63.4k
                        sumsq5_rows[3], sum5_rows[3],
1111
63.4k
                        left, src, w, edges);
1112
63.4k
        left++;
1113
63.4k
        src += PXSTRIDE(stride);
1114
63.4k
        sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1115
63.4k
                      w, params->sgr.s0, BITDEPTH_MAX);
1116
63.4k
        rotate(A5_ptrs, B5_ptrs, 2);
1117
63.4k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1118
63.4k
                      w, params->sgr.s1, BITDEPTH_MAX);
1119
63.4k
        rotate(A3_ptrs, B3_ptrs, 4);
1120
1121
63.4k
        if (--h <= 0)
1122
779
            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
62.7k
        sumsq5_ptrs[3] = sumsq5_rows[4];
1127
62.7k
        sum5_ptrs[3] = sum5_rows[4];
1128
62.7k
    } else {
1129
27.9k
        sumsq5_ptrs[0] = sumsq5_rows[0];
1130
27.9k
        sumsq5_ptrs[1] = sumsq5_rows[0];
1131
27.9k
        sumsq5_ptrs[2] = sumsq5_rows[0];
1132
27.9k
        sumsq5_ptrs[3] = sumsq5_rows[0];
1133
27.9k
        sumsq5_ptrs[4] = sumsq5_rows[0];
1134
27.9k
        sum5_ptrs[0] = sum5_rows[0];
1135
27.9k
        sum5_ptrs[1] = sum5_rows[0];
1136
27.9k
        sum5_ptrs[2] = sum5_rows[0];
1137
27.9k
        sum5_ptrs[3] = sum5_rows[0];
1138
27.9k
        sum5_ptrs[4] = sum5_rows[0];
1139
1140
27.9k
        sumsq3_ptrs[0] = sumsq3_rows[0];
1141
27.9k
        sumsq3_ptrs[1] = sumsq3_rows[0];
1142
27.9k
        sumsq3_ptrs[2] = sumsq3_rows[0];
1143
27.9k
        sum3_ptrs[0] = sum3_rows[0];
1144
27.9k
        sum3_ptrs[1] = sum3_rows[0];
1145
27.9k
        sum3_ptrs[2] = sum3_rows[0];
1146
1147
27.9k
        sgr_box35_row_h(sumsq3_rows[0], sum3_rows[0],
1148
27.9k
                        sumsq5_rows[0], sum5_rows[0],
1149
27.9k
                        left, src, w, edges);
1150
27.9k
        left++;
1151
27.9k
        src += PXSTRIDE(stride);
1152
1153
27.9k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1154
27.9k
                      w, params->sgr.s1, BITDEPTH_MAX);
1155
27.9k
        rotate(A3_ptrs, B3_ptrs, 4);
1156
1157
27.9k
        if (--h <= 0)
1158
5.47k
            goto vert_1;
1159
1160
22.4k
        sumsq5_ptrs[4] = sumsq5_rows[1];
1161
22.4k
        sum5_ptrs[4] = sum5_rows[1];
1162
1163
22.4k
        sumsq3_ptrs[2] = sumsq3_rows[1];
1164
22.4k
        sum3_ptrs[2] = sum3_rows[1];
1165
1166
22.4k
        sgr_box35_row_h(sumsq3_rows[1], sum3_rows[1],
1167
22.4k
                        sumsq5_rows[1], sum5_rows[1],
1168
22.4k
                        left, src, w, edges);
1169
22.4k
        left++;
1170
22.4k
        src += PXSTRIDE(stride);
1171
1172
22.4k
        sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1173
22.4k
                      w, params->sgr.s0, BITDEPTH_MAX);
1174
22.4k
        rotate(A5_ptrs, B5_ptrs, 2);
1175
22.4k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1176
22.4k
                      w, params->sgr.s1, BITDEPTH_MAX);
1177
22.4k
        rotate(A3_ptrs, B3_ptrs, 4);
1178
1179
22.4k
        if (--h <= 0)
1180
3.51k
            goto vert_2;
1181
1182
18.9k
        sumsq5_ptrs[3] = sumsq5_rows[2];
1183
18.9k
        sumsq5_ptrs[4] = sumsq5_rows[3];
1184
18.9k
        sum5_ptrs[3] = sum5_rows[2];
1185
18.9k
        sum5_ptrs[4] = sum5_rows[3];
1186
1187
18.9k
        sumsq3_ptrs[2] = sumsq3_rows[2];
1188
18.9k
        sum3_ptrs[2] = sum3_rows[2];
1189
1190
18.9k
        sgr_box35_row_h(sumsq3_rows[2], sum3_rows[2],
1191
18.9k
                        sumsq5_rows[2], sum5_rows[2],
1192
18.9k
                        left, src, w, edges);
1193
18.9k
        left++;
1194
18.9k
        src += PXSTRIDE(stride);
1195
1196
18.9k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1197
18.9k
                      w, params->sgr.s1, BITDEPTH_MAX);
1198
18.9k
        rotate(A3_ptrs, B3_ptrs, 4);
1199
1200
18.9k
        if (--h <= 0)
1201
1.91k
            goto odd;
1202
1203
17.0k
        sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1204
17.0k
                        sumsq5_rows[3], sum5_rows[3],
1205
17.0k
                        left, src, w, edges);
1206
17.0k
        left++;
1207
17.0k
        src += PXSTRIDE(stride);
1208
1209
17.0k
        sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1210
17.0k
                      w, params->sgr.s0, BITDEPTH_MAX);
1211
17.0k
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1212
17.0k
                      w, params->sgr.s1, BITDEPTH_MAX);
1213
17.0k
        sgr_finish_mix(&dst, stride, A5_ptrs, B5_ptrs, A3_ptrs, B3_ptrs,
1214
17.0k
                       w, 2, params->sgr.w0, params->sgr.w1
1215
17.0k
                       HIGHBD_TAIL_SUFFIX);
1216
1217
17.0k
        if (--h <= 0)
1218
1.70k
            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
15.3k
        sumsq5_ptrs[3] = sumsq5_rows[4];
1223
15.3k
        sum5_ptrs[3] = sum5_rows[4];
1224
15.3k
    }
1225
1226
1.69M
    do {
1227
1.69M
        sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1228
1.69M
                        sumsq5_ptrs[3], sum5_ptrs[3],
1229
1.69M
                        left, src, w, edges);
1230
1.69M
        left++;
1231
1.69M
        src += PXSTRIDE(stride);
1232
1233
1.69M
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1234
1.69M
                      w, params->sgr.s1, BITDEPTH_MAX);
1235
1.69M
        rotate(A3_ptrs, B3_ptrs, 4);
1236
1237
1.69M
        if (--h <= 0)
1238
11.6k
            goto odd;
1239
1240
1.68M
        sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1241
1.68M
                        sumsq5_ptrs[4], sum5_ptrs[4],
1242
1.68M
                        left, src, w, edges);
1243
1.68M
        left++;
1244
1.68M
        src += PXSTRIDE(stride);
1245
1246
1.68M
        sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1247
1.68M
                      w, params->sgr.s0, BITDEPTH_MAX);
1248
1.68M
        sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1249
1.68M
                      w, params->sgr.s1, BITDEPTH_MAX);
1250
1.68M
        sgr_finish_mix(&dst, stride, A5_ptrs, B5_ptrs, A3_ptrs, B3_ptrs,
1251
1.68M
                       w, 2, params->sgr.w0, params->sgr.w1
1252
1.68M
                       HIGHBD_TAIL_SUFFIX);
1253
1.68M
    } while (--h > 0);
1254
1255
66.3k
    if (!(edges & LR_HAVE_BOTTOM))
1256
6.83k
        goto vert_2;
1257
1258
59.5k
    sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1259
59.5k
                    sumsq5_ptrs[3], sum5_ptrs[3],
1260
59.5k
                    NULL, lpf_bottom, w, edges);
1261
59.5k
    lpf_bottom += PXSTRIDE(stride);
1262
59.5k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1263
59.5k
                  w, params->sgr.s1, BITDEPTH_MAX);
1264
59.5k
    rotate(A3_ptrs, B3_ptrs, 4);
1265
1266
59.5k
    sgr_box35_row_h(sumsq3_ptrs[2], sum3_ptrs[2],
1267
59.5k
                    sumsq5_ptrs[4], sum5_ptrs[4],
1268
59.5k
                    NULL, lpf_bottom, w, edges);
1269
1270
72.3k
output_2:
1271
72.3k
    sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1272
72.3k
                  w, params->sgr.s0, BITDEPTH_MAX);
1273
72.3k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1274
72.3k
                  w, params->sgr.s1, BITDEPTH_MAX);
1275
72.3k
    sgr_finish_mix(&dst, stride, A5_ptrs, B5_ptrs, A3_ptrs, B3_ptrs,
1276
72.3k
                   w, 2, params->sgr.w0, params->sgr.w1
1277
72.3k
                   HIGHBD_TAIL_SUFFIX);
1278
72.3k
    return;
1279
1280
12.8k
vert_2:
1281
    // Duplicate the last row twice more
1282
12.8k
    sumsq5_ptrs[3] = sumsq5_ptrs[2];
1283
12.8k
    sumsq5_ptrs[4] = sumsq5_ptrs[2];
1284
12.8k
    sum5_ptrs[3] = sum5_ptrs[2];
1285
12.8k
    sum5_ptrs[4] = sum5_ptrs[2];
1286
1287
12.8k
    sumsq3_ptrs[2] = sumsq3_ptrs[1];
1288
12.8k
    sum3_ptrs[2] = sum3_ptrs[1];
1289
12.8k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1290
12.8k
                  w, params->sgr.s1, BITDEPTH_MAX);
1291
12.8k
    rotate(A3_ptrs, B3_ptrs, 4);
1292
1293
12.8k
    sumsq3_ptrs[2] = sumsq3_ptrs[1];
1294
12.8k
    sum3_ptrs[2] = sum3_ptrs[1];
1295
1296
12.8k
    goto output_2;
1297
1298
13.5k
odd:
1299
    // Copy the last row as padding once
1300
13.5k
    sumsq5_ptrs[4] = sumsq5_ptrs[3];
1301
13.5k
    sum5_ptrs[4] = sum5_ptrs[3];
1302
1303
13.5k
    sumsq3_ptrs[2] = sumsq3_ptrs[1];
1304
13.5k
    sum3_ptrs[2] = sum3_ptrs[1];
1305
1306
13.5k
    sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1307
13.5k
                  w, params->sgr.s0, BITDEPTH_MAX);
1308
13.5k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1309
13.5k
                  w, params->sgr.s1, BITDEPTH_MAX);
1310
13.5k
    sgr_finish_mix(&dst, stride, A5_ptrs, B5_ptrs, A3_ptrs, B3_ptrs,
1311
13.5k
                   w, 2, params->sgr.w0, params->sgr.w1
1312
13.5k
                   HIGHBD_TAIL_SUFFIX);
1313
1314
20.1k
output_1:
1315
    // Duplicate the last row twice more
1316
20.1k
    sumsq5_ptrs[3] = sumsq5_ptrs[2];
1317
20.1k
    sumsq5_ptrs[4] = sumsq5_ptrs[2];
1318
20.1k
    sum5_ptrs[3] = sum5_ptrs[2];
1319
20.1k
    sum5_ptrs[4] = sum5_ptrs[2];
1320
1321
20.1k
    sumsq3_ptrs[2] = sumsq3_ptrs[1];
1322
20.1k
    sum3_ptrs[2] = sum3_ptrs[1];
1323
1324
20.1k
    sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1325
20.1k
                  w, params->sgr.s0, BITDEPTH_MAX);
1326
20.1k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1327
20.1k
                  w, params->sgr.s1, BITDEPTH_MAX);
1328
20.1k
    rotate(A3_ptrs, B3_ptrs, 4);
1329
    // Output only one row
1330
20.1k
    sgr_finish_mix(&dst, stride, A5_ptrs, B5_ptrs, A3_ptrs, B3_ptrs,
1331
20.1k
                   w, 1, params->sgr.w0, params->sgr.w1
1332
20.1k
                   HIGHBD_TAIL_SUFFIX);
1333
20.1k
    return;
1334
1335
6.54k
vert_1:
1336
    // Copy the last row as padding once
1337
6.54k
    sumsq5_ptrs[4] = sumsq5_ptrs[3];
1338
6.54k
    sum5_ptrs[4] = sum5_ptrs[3];
1339
1340
6.54k
    sumsq3_ptrs[2] = sumsq3_ptrs[1];
1341
6.54k
    sum3_ptrs[2] = sum3_ptrs[1];
1342
1343
6.54k
    sgr_box5_vert(sumsq5_ptrs, sum5_ptrs, A5_ptrs[1], B5_ptrs[1],
1344
6.54k
                  w, params->sgr.s0, BITDEPTH_MAX);
1345
6.54k
    rotate(A5_ptrs, B5_ptrs, 2);
1346
6.54k
    sgr_box3_vert(sumsq3_ptrs, sum3_ptrs, A3_ptrs[3], B3_ptrs[3],
1347
6.54k
                  w, params->sgr.s1, BITDEPTH_MAX);
1348
6.54k
    rotate(A3_ptrs, B3_ptrs, 4);
1349
1350
6.54k
    goto output_1;
1351
13.5k
}
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
74.6k
{
1368
74.6k
    c->wiener[0] = c->wiener[1] = wiener_c;
1369
74.6k
    c->sgr[0] = sgr_5x5_c;
1370
74.6k
    c->sgr[1] = sgr_3x3_c;
1371
74.6k
    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
74.6k
}
dav1d_loop_restoration_dsp_init_8bpc
Line
Count
Source
1367
34.0k
{
1368
34.0k
    c->wiener[0] = c->wiener[1] = wiener_c;
1369
34.0k
    c->sgr[0] = sgr_5x5_c;
1370
34.0k
    c->sgr[1] = sgr_3x3_c;
1371
34.0k
    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
34.0k
}
dav1d_loop_restoration_dsp_init_16bpc
Line
Count
Source
1367
40.5k
{
1368
40.5k
    c->wiener[0] = c->wiener[1] = wiener_c;
1369
40.5k
    c->sgr[0] = sgr_5x5_c;
1370
40.5k
    c->sgr[1] = sgr_3x3_c;
1371
40.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
40.5k
}