Coverage Report

Created: 2026-07-30 06:25

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
214k
{
45
214k
    const TxfmInfo *const t_dim = &dav1d_txfm_dimensions[from];
46
214k
    const int is_split = (from == (int) TX_4X4 || depth > 1) ? 0 :
47
214k
        (tx_masks[depth] >> (y_off * 4 + x_off)) & 1;
48
49
214k
    if (is_split) {
50
22.6k
        const enum RectTxfmSize sub = t_dim->sub;
51
22.6k
        const int htw4 = t_dim->w >> 1, hth4 = t_dim->h >> 1;
52
53
22.6k
        decomp_tx(txa, sub, depth + 1, y_off * 2 + 0, x_off * 2 + 0, tx_masks);
54
22.6k
        if (t_dim->w >= t_dim->h)
55
17.5k
            decomp_tx((uint8_t(*)[2][32][32]) &txa[0][0][0][htw4],
56
17.5k
                      sub, depth + 1, y_off * 2 + 0, x_off * 2 + 1, tx_masks);
57
22.6k
        if (t_dim->h >= t_dim->w) {
58
16.0k
            decomp_tx((uint8_t(*)[2][32][32]) &txa[0][0][hth4][0],
59
16.0k
                      sub, depth + 1, y_off * 2 + 1, x_off * 2 + 0, tx_masks);
60
16.0k
            if (t_dim->w >= t_dim->h)
61
11.0k
                decomp_tx((uint8_t(*)[2][32][32]) &txa[0][0][hth4][htw4],
62
11.0k
                          sub, depth + 1, y_off * 2 + 1, x_off * 2 + 1, tx_masks);
63
16.0k
        }
64
191k
    } else {
65
191k
        const int lw = imin(2, t_dim->lw), lh = imin(2, t_dim->lh);
66
67
191k
#define set_ctx(rep_macro) \
68
808k
        for (int y = 0; y < t_dim->h; y++) { \
69
616k
            rep_macro(txa[0][0][y], 0, lw); \
70
616k
            rep_macro(txa[1][0][y], 0, lh); \
71
616k
            txa[0][1][y][0] = t_dim->w; \
72
616k
        }
73
191k
        case_set_upto16(t_dim->lw);
74
191k
#undef set_ctx
75
191k
        dav1d_memset_pow2[t_dim->lw](txa[1][1][0], t_dim->h);
76
191k
    }
77
214k
}
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
138k
{
86
138k
    const TxfmInfo *const t_dim = &dav1d_txfm_dimensions[max_tx];
87
138k
    int y, x;
88
89
138k
    ALIGN_STK_16(uint8_t, txa, 2 /* edge */, [2 /* txsz, step */][32 /* y */][32 /* x */]);
90
279k
    for (int y_off = 0, y = 0; y < h4; y += t_dim->h, y_off++)
91
287k
        for (int x_off = 0, x = 0; x < w4; x += t_dim->w, x_off++)
92
146k
            decomp_tx((uint8_t(*)[2][32][32]) &txa[0][0][y][x],
93
146k
                      max_tx, 0, y_off, x_off, tx_masks);
94
95
    // left block edge
96
138k
    unsigned mask = 1U << by4;
97
636k
    for (y = 0; y < h4; y++, mask <<= 1) {
98
497k
        const int sidx = mask >= 0x10000;
99
497k
        const unsigned smask = mask >> (sidx << 4);
100
497k
        masks[0][bx4][imin(txa[0][0][y][0], l[y])][sidx] |= smask;
101
497k
    }
102
103
    // top block edge
104
606k
    for (x = 0, mask = 1U << bx4; x < w4; x++, mask <<= 1) {
105
467k
        const int sidx = mask >= 0x10000;
106
467k
        const unsigned smask = mask >> (sidx << 4);
107
467k
        masks[1][by4][imin(txa[1][0][0][x], a[x])][sidx] |= smask;
108
467k
    }
109
110
138k
    if (!skip) {
111
        // inner (tx) left|right edges
112
374k
        for (y = 0, mask = 1U << by4; y < h4; y++, mask <<= 1) {
113
290k
            const int sidx = mask >= 0x10000U;
114
290k
            const unsigned smask = mask >> (sidx << 4);
115
290k
            int ltx = txa[0][0][y][0];
116
290k
            int step = txa[0][1][y][0];
117
343k
            for (x = step; x < w4; x += step) {
118
53.4k
                const int rtx = txa[0][0][y][x];
119
53.4k
                masks[0][bx4 + x][imin(rtx, ltx)][sidx] |= smask;
120
53.4k
                ltx = rtx;
121
53.4k
                step = txa[0][1][y][x];
122
53.4k
            }
123
290k
        }
124
125
        //            top
126
        // inner (tx) --- edges
127
        //           bottom
128
397k
        for (x = 0, mask = 1U << bx4; x < w4; x++, mask <<= 1) {
129
313k
            const int sidx = mask >= 0x10000U;
130
313k
            const unsigned smask = mask >> (sidx << 4);
131
313k
            int ttx = txa[1][0][0][x];
132
313k
            int step = txa[1][1][0][x];
133
365k
            for (y = step; y < h4; y += step) {
134
51.7k
                const int btx = txa[1][0][y][x];
135
51.7k
                masks[1][by4 + y][imin(ttx, btx)][sidx] |= smask;
136
51.7k
                ttx = btx;
137
51.7k
                step = txa[1][1][y][x];
138
51.7k
            }
139
313k
        }
140
84.4k
    }
141
142
636k
    for (y = 0; y < h4; y++)
143
497k
        l[y] = txa[0][0][y][w4 - 1];
144
138k
    memcpy(a, txa[1][0][h4 - 1], w4);
145
138k
}
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
1.11M
{
153
1.11M
    const TxfmInfo *const t_dim = &dav1d_txfm_dimensions[tx];
154
1.11M
    const int twl4 = t_dim->lw, thl4 = t_dim->lh;
155
1.11M
    const int twl4c = imin(2, twl4), thl4c = imin(2, thl4);
156
1.11M
    int y, x;
157
158
    // left block edge
159
1.11M
    unsigned mask = 1U << by4;
160
6.70M
    for (y = 0; y < h4; y++, mask <<= 1) {
161
5.59M
        const int sidx = mask >= 0x10000;
162
5.59M
        const unsigned smask = mask >> (sidx << 4);
163
5.59M
        masks[0][bx4][imin(twl4c, l[y])][sidx] |= smask;
164
5.59M
    }
165
166
    // top block edge
167
6.38M
    for (x = 0, mask = 1U << bx4; x < w4; x++, mask <<= 1) {
168
5.27M
        const int sidx = mask >= 0x10000;
169
5.27M
        const unsigned smask = mask >> (sidx << 4);
170
5.27M
        masks[1][by4][imin(thl4c, a[x])][sidx] |= smask;
171
5.27M
    }
172
173
    // inner (tx) left|right edges
174
1.11M
    const int hstep = t_dim->w;
175
1.11M
    unsigned t = 1U << by4;
176
1.11M
    unsigned inner = (unsigned) ((((uint64_t) t) << h4) - t);
177
1.11M
    unsigned inner1 = inner & 0xffff, inner2 = inner >> 16;
178
1.31M
    for (x = hstep; x < w4; x += hstep) {
179
198k
        if (inner1) masks[0][bx4 + x][twl4c][0] |= inner1;
180
198k
        if (inner2) masks[0][bx4 + x][twl4c][1] |= inner2;
181
198k
    }
182
183
    //            top
184
    // inner (tx) --- edges
185
    //           bottom
186
1.11M
    const int vstep = t_dim->h;
187
1.11M
    t = 1U << bx4;
188
1.11M
    inner = (unsigned) ((((uint64_t) t) << w4) - t);
189
1.11M
    inner1 = inner & 0xffff;
190
1.11M
    inner2 = inner >> 16;
191
1.39M
    for (y = vstep; y < h4; y += vstep) {
192
275k
        if (inner1) masks[1][by4 + y][thl4c][0] |= inner1;
193
275k
        if (inner2) masks[1][by4 + y][thl4c][1] |= inner2;
194
275k
    }
195
196
1.11M
    dav1d_memset_likely_pow2(a, thl4c, w4);
197
1.11M
    dav1d_memset_likely_pow2(l, twl4c, h4);
198
1.11M
}
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
880k
{
208
880k
    const TxfmInfo *const t_dim = &dav1d_txfm_dimensions[tx];
209
880k
    const int twl4 = t_dim->lw, thl4 = t_dim->lh;
210
880k
    const int twl4c = !!twl4, thl4c = !!thl4;
211
880k
    int y, x;
212
880k
    const int vbits = 4 - ss_ver, hbits = 4 - ss_hor;
213
880k
    const int vmask = 16 >> ss_ver, hmask = 16 >> ss_hor;
214
880k
    const unsigned vmax = 1 << vmask, hmax = 1 << hmask;
215
216
    // left block edge
217
880k
    unsigned mask = 1U << cby4;
218
4.33M
    for (y = 0; y < ch4; y++, mask <<= 1) {
219
3.45M
        const int sidx = mask >= vmax;
220
3.45M
        const unsigned smask = mask >> (sidx << vbits);
221
3.45M
        masks[0][cbx4][imin(twl4c, l[y])][sidx] |= smask;
222
3.45M
    }
223
224
    // top block edge
225
4.03M
    for (x = 0, mask = 1U << cbx4; x < cw4; x++, mask <<= 1) {
226
3.15M
        const int sidx = mask >= hmax;
227
3.15M
        const unsigned smask = mask >> (sidx << hbits);
228
3.15M
        masks[1][cby4][imin(thl4c, a[x])][sidx] |= smask;
229
3.15M
    }
230
231
880k
    if (!skip_inter) {
232
        // inner (tx) left|right edges
233
839k
        const int hstep = t_dim->w;
234
839k
        unsigned t = 1U << cby4;
235
839k
        unsigned inner = (unsigned) ((((uint64_t) t) << ch4) - t);
236
839k
        unsigned inner1 = inner & ((1 << vmask) - 1), inner2 = inner >> vmask;
237
938k
        for (x = hstep; x < cw4; x += hstep) {
238
98.7k
            if (inner1) masks[0][cbx4 + x][twl4c][0] |= inner1;
239
98.7k
            if (inner2) masks[0][cbx4 + x][twl4c][1] |= inner2;
240
98.7k
        }
241
242
        //            top
243
        // inner (tx) --- edges
244
        //           bottom
245
839k
        const int vstep = t_dim->h;
246
839k
        t = 1U << cbx4;
247
839k
        inner = (unsigned) ((((uint64_t) t) << cw4) - t);
248
839k
        inner1 = inner & ((1 << hmask) - 1), inner2 = inner >> hmask;
249
968k
        for (y = vstep; y < ch4; y += vstep) {
250
129k
            if (inner1) masks[1][cby4 + y][thl4c][0] |= inner1;
251
129k
            if (inner2) masks[1][cby4 + y][thl4c][1] |= inner2;
252
129k
        }
253
839k
    }
254
255
880k
    dav1d_memset_likely_pow2(a, thl4c, cw4);
256
880k
    dav1d_memset_likely_pow2(l, twl4c, ch4);
257
880k
}
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
1.15M
{
272
1.15M
    const uint8_t *const b_dim = dav1d_block_dimensions[bs];
273
1.15M
    const int bw4 = imin(iw - bx, b_dim[0]);
274
1.15M
    const int bh4 = imin(ih - by, b_dim[1]);
275
1.15M
    const int bx4 = bx & 31;
276
1.15M
    const int by4 = by & 31;
277
1.15M
    assert(bw4 >= 0 && bh4 >= 0);
278
279
1.15M
    if (bw4 && bh4) {
280
1.11M
        uint8_t (*level_cache_ptr)[4] = level_cache + by * b4_stride + bx;
281
6.68M
        for (int y = 0; y < bh4; y++) {
282
57.4M
            for (int x = 0; x < bw4; x++) {
283
51.8M
                level_cache_ptr[x][0] = filter_level[0][0][0];
284
51.8M
                level_cache_ptr[x][1] = filter_level[1][0][0];
285
51.8M
            }
286
5.57M
            level_cache_ptr += b4_stride;
287
5.57M
        }
288
289
1.11M
        mask_edges_intra(lflvl->filter_y, by4, bx4, bw4, bh4, ytx, ay, ly);
290
1.11M
    }
291
292
1.15M
    if (!auv) return;
293
294
804k
    const int ss_ver = layout == DAV1D_PIXEL_LAYOUT_I420;
295
804k
    const int ss_hor = layout != DAV1D_PIXEL_LAYOUT_I444;
296
804k
    const int cbw4 = imin(((iw + ss_hor) >> ss_hor) - (bx >> ss_hor),
297
804k
                          (b_dim[0] + ss_hor) >> ss_hor);
298
804k
    const int cbh4 = imin(((ih + ss_ver) >> ss_ver) - (by >> ss_ver),
299
804k
                          (b_dim[1] + ss_ver) >> ss_ver);
300
804k
    assert(cbw4 >= 0 && cbh4 >= 0);
301
302
804k
    if (!cbw4 || !cbh4) return;
303
304
776k
    const int cbx4 = bx4 >> ss_hor;
305
776k
    const int cby4 = by4 >> ss_ver;
306
307
776k
    uint8_t (*level_cache_ptr)[4] =
308
776k
        level_cache + (by >> ss_ver) * b4_stride + (bx >> ss_hor);
309
3.97M
    for (int y = 0; y < cbh4; y++) {
310
30.0M
        for (int x = 0; x < cbw4; x++) {
311
26.8M
            level_cache_ptr[x][2] = filter_level[2][0][0];
312
26.8M
            level_cache_ptr[x][3] = filter_level[3][0][0];
313
26.8M
        }
314
3.19M
        level_cache_ptr += b4_stride;
315
3.19M
    }
316
317
776k
    mask_edges_chroma(lflvl->filter_uv, cby4, cbx4, cbw4, cbh4, 0, uvtx,
318
776k
                      auv, luv, ss_hor, ss_ver);
319
776k
}
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
148k
{
335
148k
    const uint8_t *const b_dim = dav1d_block_dimensions[bs];
336
148k
    const int bw4 = imin(iw - bx, b_dim[0]);
337
148k
    const int bh4 = imin(ih - by, b_dim[1]);
338
148k
    const int bx4 = bx & 31;
339
148k
    const int by4 = by & 31;
340
148k
    assert(bw4 >= 0 && bh4 >= 0);
341
342
148k
    if (bw4 && bh4) {
343
138k
        uint8_t (*level_cache_ptr)[4] = level_cache + by * b4_stride + bx;
344
636k
        for (int y = 0; y < bh4; y++) {
345
2.81M
            for (int x = 0; x < bw4; x++) {
346
2.31M
                level_cache_ptr[x][0] = filter_level[0][0][0];
347
2.31M
                level_cache_ptr[x][1] = filter_level[1][0][0];
348
2.31M
            }
349
497k
            level_cache_ptr += b4_stride;
350
497k
        }
351
352
138k
        mask_edges_inter(lflvl->filter_y, by4, bx4, bw4, bh4, skip,
353
138k
                         max_ytx, tx_masks, ay, ly);
354
138k
    }
355
356
148k
    if (!auv) return;
357
358
103k
    const int ss_ver = layout == DAV1D_PIXEL_LAYOUT_I420;
359
103k
    const int ss_hor = layout != DAV1D_PIXEL_LAYOUT_I444;
360
103k
    const int cbw4 = imin(((iw + ss_hor) >> ss_hor) - (bx >> ss_hor),
361
103k
                          (b_dim[0] + ss_hor) >> ss_hor);
362
103k
    const int cbh4 = imin(((ih + ss_ver) >> ss_ver) - (by >> ss_ver),
363
103k
                          (b_dim[1] + ss_ver) >> ss_ver);
364
103k
    assert(cbw4 >= 0 && cbh4 >= 0);
365
366
103k
    if (!cbw4 || !cbh4) return;
367
368
102k
    const int cbx4 = bx4 >> ss_hor;
369
102k
    const int cby4 = by4 >> ss_ver;
370
371
102k
    uint8_t (*level_cache_ptr)[4] =
372
102k
        level_cache + (by >> ss_ver) * b4_stride + (bx >> ss_hor);
373
345k
    for (int y = 0; y < cbh4; y++) {
374
980k
        for (int x = 0; x < cbw4; x++) {
375
737k
            level_cache_ptr[x][2] = filter_level[2][0][0];
376
737k
            level_cache_ptr[x][3] = filter_level[3][0][0];
377
737k
        }
378
243k
        level_cache_ptr += b4_stride;
379
243k
    }
380
381
102k
    mask_edges_chroma(lflvl->filter_uv, cby4, cbx4, cbw4, cbh4, skip, uvtx,
382
102k
                      auv, luv, ss_hor, ss_ver);
383
102k
}
384
385
47.6k
void dav1d_calc_eih(Av1FilterLUT *const lim_lut, const int filter_sharpness) {
386
    // set E/I/H values from loopfilter level
387
47.6k
    const int sharp = filter_sharpness;
388
3.09M
    for (int level = 0; level < 64; level++) {
389
3.04M
        int limit = level;
390
391
3.04M
        if (sharp > 0) {
392
1.35M
            limit >>= (sharp + 3) >> 2;
393
1.35M
            limit = imin(limit, 9 - sharp);
394
1.35M
        }
395
3.04M
        limit = imax(limit, 1);
396
397
3.04M
        lim_lut->i[level] = limit;
398
3.04M
        lim_lut->e[level] = 2 * (level + 2) + limit;
399
3.04M
    }
400
47.6k
    lim_lut->sharp[0] = (sharp + 3) >> 2;
401
47.6k
    lim_lut->sharp[1] = sharp ? 9 - sharp : 0xff;
402
47.6k
}
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
403k
{
409
403k
    const int base = iclip(iclip(base_lvl + lf_delta, 0, 63) + seg_delta, 0, 63);
410
411
403k
    if (!mr_delta) {
412
221k
        memset(lflvl_values, base, sizeof(*lflvl_values) * 8);
413
221k
    } else {
414
181k
        const int sh = base >= 32;
415
181k
        lflvl_values[0][0] = lflvl_values[0][1] =
416
181k
            iclip(base + (mr_delta->ref_delta[0] * (1 << sh)), 0, 63);
417
1.45M
        for (int r = 1; r < 8; r++) {
418
3.80M
            for (int m = 0; m < 2; m++) {
419
2.53M
                const int delta =
420
2.53M
                    mr_delta->mode_delta[m] + mr_delta->ref_delta[r];
421
2.53M
                lflvl_values[r][m] = iclip(base + (delta * (1 << sh)), 0, 63);
422
2.53M
            }
423
1.26M
        }
424
181k
    }
425
403k
}
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
241k
{
432
241k
    if (!base_lvl)
433
78.6k
        memset(lflvl_values, 0, sizeof(*lflvl_values) * 8);
434
162k
    else
435
162k
        calc_lf_value(lflvl_values, base_lvl, lf_delta, seg_delta, mr_delta);
436
241k
}
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
55.4k
{
442
55.4k
    const int n_seg = hdr->segmentation.enabled ? 8 : 1;
443
444
55.4k
    if (!hdr->loopfilter.level_y[0] && !hdr->loopfilter.level_y[1]) {
445
17.7k
        memset(lflvl_values, 0, sizeof(*lflvl_values) * n_seg);
446
17.7k
        return;
447
17.7k
    }
448
449
37.7k
    const Dav1dLoopfilterModeRefDeltas *const mr_deltas =
450
37.7k
        hdr->loopfilter.mode_ref_delta_enabled ?
451
37.7k
        &hdr->loopfilter.mode_ref_deltas : NULL;
452
158k
    for (int s = 0; s < n_seg; s++) {
453
120k
        const Dav1dSegmentationData *const segd =
454
120k
            hdr->segmentation.enabled ? &hdr->segmentation.seg_data.d[s] : NULL;
455
456
120k
        calc_lf_value(lflvl_values[s][0], hdr->loopfilter.level_y[0],
457
120k
                      lf_delta[0], segd ? segd->delta_lf_y_v : 0, mr_deltas);
458
120k
        calc_lf_value(lflvl_values[s][1], hdr->loopfilter.level_y[1],
459
120k
                      lf_delta[hdr->delta.lf.multi ? 1 : 0],
460
120k
                      segd ? segd->delta_lf_y_h : 0, mr_deltas);
461
120k
        calc_lf_value_chroma(lflvl_values[s][2], hdr->loopfilter.level_u,
462
120k
                             lf_delta[hdr->delta.lf.multi ? 2 : 0],
463
120k
                             segd ? segd->delta_lf_u : 0, mr_deltas);
464
120k
        calc_lf_value_chroma(lflvl_values[s][3], hdr->loopfilter.level_v,
465
120k
                             lf_delta[hdr->delta.lf.multi ? 3 : 0],
466
120k
                             segd ? segd->delta_lf_v : 0, mr_deltas);
467
120k
    }
468
37.7k
}