Coverage Report

Created: 2026-08-31 06:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/dav1d/src/lf_mask.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 <string.h>
31
32
#include "common/intops.h"
33
34
#include "src/ctx.h"
35
#include "src/levels.h"
36
#include "src/lf_mask.h"
37
#include "src/tables.h"
38
39
static void decomp_tx(uint8_t (*const txa)[2 /* txsz, step */][32 /* y */][32 /* x */],
40
                      const enum RectTxfmSize from,
41
                      const int depth,
42
                      const int y_off, const int x_off,
43
                      const uint16_t *const tx_masks)
44
1.61M
{
45
1.61M
    const TxfmInfo *const t_dim = &dav1d_txfm_dimensions[from];
46
1.61M
    const int is_split = (from == (int) TX_4X4 || depth > 1) ? 0 :
47
1.61M
        (tx_masks[depth] >> (y_off * 4 + x_off)) & 1;
48
49
1.61M
    if (is_split) {
50
103k
        const enum RectTxfmSize sub = t_dim->sub;
51
103k
        const int htw4 = t_dim->w >> 1, hth4 = t_dim->h >> 1;
52
53
103k
        decomp_tx(txa, sub, depth + 1, y_off * 2 + 0, x_off * 2 + 0, tx_masks);
54
103k
        if (t_dim->w >= t_dim->h)
55
80.4k
            decomp_tx((uint8_t(*)[2][32][32]) &txa[0][0][0][htw4],
56
80.4k
                      sub, depth + 1, y_off * 2 + 0, x_off * 2 + 1, tx_masks);
57
103k
        if (t_dim->h >= t_dim->w) {
58
75.9k
            decomp_tx((uint8_t(*)[2][32][32]) &txa[0][0][hth4][0],
59
75.9k
                      sub, depth + 1, y_off * 2 + 1, x_off * 2 + 0, tx_masks);
60
75.9k
            if (t_dim->w >= t_dim->h)
61
53.1k
                decomp_tx((uint8_t(*)[2][32][32]) &txa[0][0][hth4][htw4],
62
53.1k
                          sub, depth + 1, y_off * 2 + 1, x_off * 2 + 1, tx_masks);
63
75.9k
        }
64
1.50M
    } else {
65
1.50M
        const int lw = imin(2, t_dim->lw), lh = imin(2, t_dim->lh);
66
67
1.50M
#define set_ctx(rep_macro) \
68
6.78M
        for (int y = 0; y < t_dim->h; y++) { \
69
5.27M
            rep_macro(txa[0][0][y], 0, lw); \
70
5.27M
            rep_macro(txa[1][0][y], 0, lh); \
71
5.27M
            txa[0][1][y][0] = t_dim->w; \
72
5.27M
        }
73
1.50M
        case_set_upto16(t_dim->lw);
74
1.50M
#undef set_ctx
75
1.50M
        dav1d_memset_pow2[t_dim->lw](txa[1][1][0], t_dim->h);
76
1.50M
    }
77
1.61M
}
78
79
static inline void mask_edges_inter(uint16_t (*const masks)[32][3][2],
80
                                    const int by4, const int bx4,
81
                                    const int w4, const int h4, const int skip,
82
                                    const enum RectTxfmSize max_tx,
83
                                    const uint16_t *const tx_masks,
84
                                    uint8_t *const a, uint8_t *const l)
85
1.06M
{
86
1.06M
    const TxfmInfo *const t_dim = &dav1d_txfm_dimensions[max_tx];
87
1.06M
    int y, x;
88
89
1.06M
    ALIGN_STK_16(uint8_t, txa, 2 /* edge */, [2 /* txsz, step */][32 /* y */][32 /* x */]);
90
2.17M
    for (int y_off = 0, y = 0; y < h4; y += t_dim->h, y_off++)
91
2.41M
        for (int x_off = 0, x = 0; x < w4; x += t_dim->w, x_off++)
92
1.29M
            decomp_tx((uint8_t(*)[2][32][32]) &txa[0][0][y][x],
93
1.29M
                      max_tx, 0, y_off, x_off, tx_masks);
94
95
    // left block edge
96
1.06M
    unsigned mask = 1U << by4;
97
5.33M
    for (y = 0; y < h4; y++, mask <<= 1) {
98
4.27M
        const int sidx = mask >= 0x10000;
99
4.27M
        const unsigned smask = mask >> (sidx << 4);
100
4.27M
        masks[0][bx4][imin(txa[0][0][y][0], l[y])][sidx] |= smask;
101
4.27M
    }
102
103
    // top block edge
104
4.57M
    for (x = 0, mask = 1U << bx4; x < w4; x++, mask <<= 1) {
105
3.50M
        const int sidx = mask >= 0x10000;
106
3.50M
        const unsigned smask = mask >> (sidx << 4);
107
3.50M
        masks[1][by4][imin(txa[1][0][0][x], a[x])][sidx] |= smask;
108
3.50M
    }
109
110
1.06M
    if (!skip) {
111
        // inner (tx) left|right edges
112
2.71M
        for (y = 0, mask = 1U << by4; y < h4; y++, mask <<= 1) {
113
2.16M
            const int sidx = mask >= 0x10000U;
114
2.16M
            const unsigned smask = mask >> (sidx << 4);
115
2.16M
            int ltx = txa[0][0][y][0];
116
2.16M
            int step = txa[0][1][y][0];
117
2.55M
            for (x = step; x < w4; x += step) {
118
388k
                const int rtx = txa[0][0][y][x];
119
388k
                masks[0][bx4 + x][imin(rtx, ltx)][sidx] |= smask;
120
388k
                ltx = rtx;
121
388k
                step = txa[0][1][y][x];
122
388k
            }
123
2.16M
        }
124
125
        //            top
126
        // inner (tx) --- edges
127
        //           bottom
128
2.43M
        for (x = 0, mask = 1U << bx4; x < w4; x++, mask <<= 1) {
129
1.88M
            const int sidx = mask >= 0x10000U;
130
1.88M
            const unsigned smask = mask >> (sidx << 4);
131
1.88M
            int ttx = txa[1][0][0][x];
132
1.88M
            int step = txa[1][1][0][x];
133
2.28M
            for (y = step; y < h4; y += step) {
134
400k
                const int btx = txa[1][0][y][x];
135
400k
                masks[1][by4 + y][imin(ttx, btx)][sidx] |= smask;
136
400k
                ttx = btx;
137
400k
                step = txa[1][1][y][x];
138
400k
            }
139
1.88M
        }
140
550k
    }
141
142
5.33M
    for (y = 0; y < h4; y++)
143
4.27M
        l[y] = txa[0][0][y][w4 - 1];
144
1.06M
    memcpy(a, txa[1][0][h4 - 1], w4);
145
1.06M
}
146
147
static inline void mask_edges_intra(uint16_t (*const masks)[32][3][2],
148
                                    const int by4, const int bx4,
149
                                    const int w4, const int h4,
150
                                    const enum RectTxfmSize tx,
151
                                    uint8_t *const a, uint8_t *const l)
152
2.57M
{
153
2.57M
    const TxfmInfo *const t_dim = &dav1d_txfm_dimensions[tx];
154
2.57M
    const int twl4 = t_dim->lw, thl4 = t_dim->lh;
155
2.57M
    const int twl4c = imin(2, twl4), thl4c = imin(2, thl4);
156
2.57M
    int y, x;
157
158
    // left block edge
159
2.57M
    unsigned mask = 1U << by4;
160
13.5M
    for (y = 0; y < h4; y++, mask <<= 1) {
161
10.9M
        const int sidx = mask >= 0x10000;
162
10.9M
        const unsigned smask = mask >> (sidx << 4);
163
10.9M
        masks[0][bx4][imin(twl4c, l[y])][sidx] |= smask;
164
10.9M
    }
165
166
    // top block edge
167
12.6M
    for (x = 0, mask = 1U << bx4; x < w4; x++, mask <<= 1) {
168
10.1M
        const int sidx = mask >= 0x10000;
169
10.1M
        const unsigned smask = mask >> (sidx << 4);
170
10.1M
        masks[1][by4][imin(thl4c, a[x])][sidx] |= smask;
171
10.1M
    }
172
173
    // inner (tx) left|right edges
174
2.57M
    const int hstep = t_dim->w;
175
2.57M
    unsigned t = 1U << by4;
176
2.57M
    unsigned inner = (unsigned) ((((uint64_t) t) << h4) - t);
177
2.57M
    unsigned inner1 = inner & 0xffff, inner2 = inner >> 16;
178
3.33M
    for (x = hstep; x < w4; x += hstep) {
179
756k
        if (inner1) masks[0][bx4 + x][twl4c][0] |= inner1;
180
756k
        if (inner2) masks[0][bx4 + x][twl4c][1] |= inner2;
181
756k
    }
182
183
    //            top
184
    // inner (tx) --- edges
185
    //           bottom
186
2.57M
    const int vstep = t_dim->h;
187
2.57M
    t = 1U << bx4;
188
2.57M
    inner = (unsigned) ((((uint64_t) t) << w4) - t);
189
2.57M
    inner1 = inner & 0xffff;
190
2.57M
    inner2 = inner >> 16;
191
3.35M
    for (y = vstep; y < h4; y += vstep) {
192
778k
        if (inner1) masks[1][by4 + y][thl4c][0] |= inner1;
193
778k
        if (inner2) masks[1][by4 + y][thl4c][1] |= inner2;
194
778k
    }
195
196
2.57M
    dav1d_memset_likely_pow2(a, thl4c, w4);
197
2.57M
    dav1d_memset_likely_pow2(l, twl4c, h4);
198
2.57M
}
199
200
static void mask_edges_chroma(uint16_t (*const masks)[32][2][2],
201
                              const int cby4, const int cbx4,
202
                              const int cw4, const int ch4,
203
                              const int skip_inter,
204
                              const enum RectTxfmSize tx,
205
                              uint8_t *const a, uint8_t *const l,
206
                              const int ss_hor, const int ss_ver)
207
2.70M
{
208
2.70M
    const TxfmInfo *const t_dim = &dav1d_txfm_dimensions[tx];
209
2.70M
    const int twl4 = t_dim->lw, thl4 = t_dim->lh;
210
2.70M
    const int twl4c = !!twl4, thl4c = !!thl4;
211
2.70M
    int y, x;
212
2.70M
    const int vbits = 4 - ss_ver, hbits = 4 - ss_hor;
213
2.70M
    const int vmask = 16 >> ss_ver, hmask = 16 >> ss_hor;
214
2.70M
    const unsigned vmax = 1 << vmask, hmax = 1 << hmask;
215
216
    // left block edge
217
2.70M
    unsigned mask = 1U << cby4;
218
10.9M
    for (y = 0; y < ch4; y++, mask <<= 1) {
219
8.19M
        const int sidx = mask >= vmax;
220
8.19M
        const unsigned smask = mask >> (sidx << vbits);
221
8.19M
        masks[0][cbx4][imin(twl4c, l[y])][sidx] |= smask;
222
8.19M
    }
223
224
    // top block edge
225
10.4M
    for (x = 0, mask = 1U << cbx4; x < cw4; x++, mask <<= 1) {
226
7.72M
        const int sidx = mask >= hmax;
227
7.72M
        const unsigned smask = mask >> (sidx << hbits);
228
7.72M
        masks[1][cby4][imin(thl4c, a[x])][sidx] |= smask;
229
7.72M
    }
230
231
2.70M
    if (!skip_inter) {
232
        // inner (tx) left|right edges
233
2.36M
        const int hstep = t_dim->w;
234
2.36M
        unsigned t = 1U << cby4;
235
2.36M
        unsigned inner = (unsigned) ((((uint64_t) t) << ch4) - t);
236
2.36M
        unsigned inner1 = inner & ((1 << vmask) - 1), inner2 = inner >> vmask;
237
2.58M
        for (x = hstep; x < cw4; x += hstep) {
238
218k
            if (inner1) masks[0][cbx4 + x][twl4c][0] |= inner1;
239
218k
            if (inner2) masks[0][cbx4 + x][twl4c][1] |= inner2;
240
218k
        }
241
242
        //            top
243
        // inner (tx) --- edges
244
        //           bottom
245
2.36M
        const int vstep = t_dim->h;
246
2.36M
        t = 1U << cbx4;
247
2.36M
        inner = (unsigned) ((((uint64_t) t) << cw4) - t);
248
2.36M
        inner1 = inner & ((1 << hmask) - 1), inner2 = inner >> hmask;
249
2.60M
        for (y = vstep; y < ch4; y += vstep) {
250
237k
            if (inner1) masks[1][cby4 + y][thl4c][0] |= inner1;
251
237k
            if (inner2) masks[1][cby4 + y][thl4c][1] |= inner2;
252
237k
        }
253
2.36M
    }
254
255
2.70M
    dav1d_memset_likely_pow2(a, thl4c, cw4);
256
2.70M
    dav1d_memset_likely_pow2(l, twl4c, ch4);
257
2.70M
}
258
259
void dav1d_create_lf_mask_intra(Av1Filter *const lflvl,
260
                                uint8_t (*const level_cache)[4],
261
                                const ptrdiff_t b4_stride,
262
                                const uint8_t (*filter_level)[8][2],
263
                                const int bx, const int by,
264
                                const int iw, const int ih,
265
                                const enum BlockSize bs,
266
                                const enum RectTxfmSize ytx,
267
                                const enum RectTxfmSize uvtx,
268
                                const enum Dav1dPixelLayout layout,
269
                                uint8_t *const ay, uint8_t *const ly,
270
                                uint8_t *const auv, uint8_t *const luv)
271
2.71M
{
272
2.71M
    const uint8_t *const b_dim = dav1d_block_dimensions[bs];
273
2.71M
    const int bw4 = imin(iw - bx, b_dim[0]);
274
2.71M
    const int bh4 = imin(ih - by, b_dim[1]);
275
2.71M
    const int bx4 = bx & 31;
276
2.71M
    const int by4 = by & 31;
277
2.71M
    assert(bw4 >= 0 && bh4 >= 0);
278
279
2.71M
    if (bw4 && bh4) {
280
2.57M
        uint8_t (*level_cache_ptr)[4] = level_cache + by * b4_stride + bx;
281
13.5M
        for (int y = 0; y < bh4; y++) {
282
82.7M
            for (int x = 0; x < bw4; x++) {
283
71.8M
                level_cache_ptr[x][0] = filter_level[0][0][0];
284
71.8M
                level_cache_ptr[x][1] = filter_level[1][0][0];
285
71.8M
            }
286
10.9M
            level_cache_ptr += b4_stride;
287
10.9M
        }
288
289
2.57M
        mask_edges_intra(lflvl->filter_y, by4, bx4, bw4, bh4, ytx, ay, ly);
290
2.57M
    }
291
292
2.71M
    if (!auv) return;
293
294
2.00M
    const int ss_ver = layout == DAV1D_PIXEL_LAYOUT_I420;
295
2.00M
    const int ss_hor = layout != DAV1D_PIXEL_LAYOUT_I444;
296
2.00M
    const int cbw4 = imin(((iw + ss_hor) >> ss_hor) - (bx >> ss_hor),
297
2.00M
                          (b_dim[0] + ss_hor) >> ss_hor);
298
2.00M
    const int cbh4 = imin(((ih + ss_ver) >> ss_ver) - (by >> ss_ver),
299
2.00M
                          (b_dim[1] + ss_ver) >> ss_ver);
300
2.00M
    assert(cbw4 >= 0 && cbh4 >= 0);
301
302
2.00M
    if (!cbw4 || !cbh4) return;
303
304
1.93M
    const int cbx4 = bx4 >> ss_hor;
305
1.93M
    const int cby4 = by4 >> ss_ver;
306
307
1.93M
    uint8_t (*level_cache_ptr)[4] =
308
1.93M
        level_cache + (by >> ss_ver) * b4_stride + (bx >> ss_hor);
309
7.61M
    for (int y = 0; y < cbh4; y++) {
310
35.2M
        for (int x = 0; x < cbw4; x++) {
311
29.5M
            level_cache_ptr[x][2] = filter_level[2][0][0];
312
29.5M
            level_cache_ptr[x][3] = filter_level[3][0][0];
313
29.5M
        }
314
5.68M
        level_cache_ptr += b4_stride;
315
5.68M
    }
316
317
1.93M
    mask_edges_chroma(lflvl->filter_uv, cby4, cbx4, cbw4, cbh4, 0, uvtx,
318
1.93M
                      auv, luv, ss_hor, ss_ver);
319
1.93M
}
320
321
void dav1d_create_lf_mask_inter(Av1Filter *const lflvl,
322
                                uint8_t (*const level_cache)[4],
323
                                const ptrdiff_t b4_stride,
324
                                const uint8_t (*filter_level)[8][2],
325
                                const int bx, const int by,
326
                                const int iw, const int ih,
327
                                const int skip, const enum BlockSize bs,
328
                                const enum RectTxfmSize max_ytx,
329
                                const uint16_t *const tx_masks,
330
                                const enum RectTxfmSize uvtx,
331
                                const enum Dav1dPixelLayout layout,
332
                                uint8_t *const ay, uint8_t *const ly,
333
                                uint8_t *const auv, uint8_t *const luv)
334
1.13M
{
335
1.13M
    const uint8_t *const b_dim = dav1d_block_dimensions[bs];
336
1.13M
    const int bw4 = imin(iw - bx, b_dim[0]);
337
1.13M
    const int bh4 = imin(ih - by, b_dim[1]);
338
1.13M
    const int bx4 = bx & 31;
339
1.13M
    const int by4 = by & 31;
340
1.13M
    assert(bw4 >= 0 && bh4 >= 0);
341
342
1.13M
    if (bw4 && bh4) {
343
1.06M
        uint8_t (*level_cache_ptr)[4] = level_cache + by * b4_stride + bx;
344
5.33M
        for (int y = 0; y < bh4; y++) {
345
23.6M
            for (int x = 0; x < bw4; x++) {
346
19.3M
                level_cache_ptr[x][0] = filter_level[0][0][0];
347
19.3M
                level_cache_ptr[x][1] = filter_level[1][0][0];
348
19.3M
            }
349
4.27M
            level_cache_ptr += b4_stride;
350
4.27M
        }
351
352
1.06M
        mask_edges_inter(lflvl->filter_y, by4, bx4, bw4, bh4, skip,
353
1.06M
                         max_ytx, tx_masks, ay, ly);
354
1.06M
    }
355
356
1.13M
    if (!auv) return;
357
358
780k
    const int ss_ver = layout == DAV1D_PIXEL_LAYOUT_I420;
359
780k
    const int ss_hor = layout != DAV1D_PIXEL_LAYOUT_I444;
360
780k
    const int cbw4 = imin(((iw + ss_hor) >> ss_hor) - (bx >> ss_hor),
361
780k
                          (b_dim[0] + ss_hor) >> ss_hor);
362
780k
    const int cbh4 = imin(((ih + ss_ver) >> ss_ver) - (by >> ss_ver),
363
780k
                          (b_dim[1] + ss_ver) >> ss_ver);
364
780k
    assert(cbw4 >= 0 && cbh4 >= 0);
365
366
780k
    if (!cbw4 || !cbh4) return;
367
368
769k
    const int cbx4 = bx4 >> ss_hor;
369
769k
    const int cby4 = by4 >> ss_ver;
370
371
769k
    uint8_t (*level_cache_ptr)[4] =
372
769k
        level_cache + (by >> ss_ver) * b4_stride + (bx >> ss_hor);
373
3.27M
    for (int y = 0; y < cbh4; y++) {
374
13.6M
        for (int x = 0; x < cbw4; x++) {
375
11.1M
            level_cache_ptr[x][2] = filter_level[2][0][0];
376
11.1M
            level_cache_ptr[x][3] = filter_level[3][0][0];
377
11.1M
        }
378
2.50M
        level_cache_ptr += b4_stride;
379
2.50M
    }
380
381
769k
    mask_edges_chroma(lflvl->filter_uv, cby4, cbx4, cbw4, cbh4, skip, uvtx,
382
769k
                      auv, luv, ss_hor, ss_ver);
383
769k
}
384
385
142k
void dav1d_calc_eih(Av1FilterLUT *const lim_lut, const int filter_sharpness) {
386
    // set E/I/H values from loopfilter level
387
142k
    const int sharp = filter_sharpness;
388
9.25M
    for (int level = 0; level < 64; level++) {
389
9.11M
        int limit = level;
390
391
9.11M
        if (sharp > 0) {
392
5.55M
            limit >>= (sharp + 3) >> 2;
393
5.55M
            limit = imin(limit, 9 - sharp);
394
5.55M
        }
395
9.11M
        limit = imax(limit, 1);
396
397
9.11M
        lim_lut->i[level] = limit;
398
9.11M
        lim_lut->e[level] = 2 * (level + 2) + limit;
399
9.11M
    }
400
142k
    lim_lut->sharp[0] = (sharp + 3) >> 2;
401
142k
    lim_lut->sharp[1] = sharp ? 9 - sharp : 0xff;
402
142k
}
403
404
static void calc_lf_value(uint8_t (*const lflvl_values)[2],
405
                          const int base_lvl, const int lf_delta,
406
                          const int seg_delta,
407
                          const Dav1dLoopfilterModeRefDeltas *const mr_delta)
408
3.60M
{
409
3.60M
    const int base = iclip(iclip(base_lvl + lf_delta, 0, 63) + seg_delta, 0, 63);
410
411
3.60M
    if (!mr_delta) {
412
2.78M
        memset(lflvl_values, base, sizeof(*lflvl_values) * 8);
413
2.78M
    } else {
414
825k
        const int sh = base >= 32;
415
825k
        lflvl_values[0][0] = lflvl_values[0][1] =
416
825k
            iclip(base + (mr_delta->ref_delta[0] * (1 << sh)), 0, 63);
417
6.60M
        for (int r = 1; r < 8; r++) {
418
17.3M
            for (int m = 0; m < 2; m++) {
419
11.5M
                const int delta =
420
11.5M
                    mr_delta->mode_delta[m] + mr_delta->ref_delta[r];
421
11.5M
                lflvl_values[r][m] = iclip(base + (delta * (1 << sh)), 0, 63);
422
11.5M
            }
423
5.77M
        }
424
825k
    }
425
3.60M
}
426
427
static inline void calc_lf_value_chroma(uint8_t (*const lflvl_values)[2],
428
                                        const int base_lvl, const int lf_delta,
429
                                        const int seg_delta,
430
                                        const Dav1dLoopfilterModeRefDeltas *const mr_delta)
431
2.06M
{
432
2.06M
    if (!base_lvl)
433
531k
        memset(lflvl_values, 0, sizeof(*lflvl_values) * 8);
434
1.53M
    else
435
1.53M
        calc_lf_value(lflvl_values, base_lvl, lf_delta, seg_delta, mr_delta);
436
2.06M
}
437
438
void dav1d_calc_lf_values(uint8_t (*const lflvl_values)[4][8][2],
439
                          const Dav1dFrameHeader *const hdr,
440
                          const int8_t lf_delta[4])
441
288k
{
442
288k
    const int n_seg = hdr->segmentation.enabled ? 8 : 1;
443
444
288k
    if (!hdr->loopfilter.level_y[0] && !hdr->loopfilter.level_y[1]) {
445
36.4k
        memset(lflvl_values, 0, sizeof(*lflvl_values) * n_seg);
446
36.4k
        return;
447
36.4k
    }
448
449
252k
    const Dav1dLoopfilterModeRefDeltas *const mr_deltas =
450
252k
        hdr->loopfilter.mode_ref_delta_enabled ?
451
252k
        &hdr->loopfilter.mode_ref_deltas : NULL;
452
1.28M
    for (int s = 0; s < n_seg; s++) {
453
1.03M
        const Dav1dSegmentationData *const segd =
454
1.03M
            hdr->segmentation.enabled ? &hdr->segmentation.seg_data.d[s] : NULL;
455
456
1.03M
        calc_lf_value(lflvl_values[s][0], hdr->loopfilter.level_y[0],
457
1.03M
                      lf_delta[0], segd ? segd->delta_lf_y_v : 0, mr_deltas);
458
1.03M
        calc_lf_value(lflvl_values[s][1], hdr->loopfilter.level_y[1],
459
1.03M
                      lf_delta[hdr->delta.lf.multi ? 1 : 0],
460
1.03M
                      segd ? segd->delta_lf_y_h : 0, mr_deltas);
461
1.03M
        calc_lf_value_chroma(lflvl_values[s][2], hdr->loopfilter.level_u,
462
1.03M
                             lf_delta[hdr->delta.lf.multi ? 2 : 0],
463
1.03M
                             segd ? segd->delta_lf_u : 0, mr_deltas);
464
1.03M
        calc_lf_value_chroma(lflvl_values[s][3], hdr->loopfilter.level_v,
465
1.03M
                             lf_delta[hdr->delta.lf.multi ? 3 : 0],
466
1.03M
                             segd ? segd->delta_lf_v : 0, mr_deltas);
467
1.03M
    }
468
252k
}