Coverage Report

Created: 2026-08-13 07:23

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/dav1d/src/fg_apply_tmpl.c
Line
Count
Source
1
/*
2
 * Copyright © 2018, Niklas Haas
3
 * Copyright © 2018, VideoLAN and dav1d authors
4
 * Copyright © 2018, Two Orioles, LLC
5
 * All rights reserved.
6
 *
7
 * Redistribution and use in source and binary forms, with or without
8
 * modification, are permitted provided that the following conditions are met:
9
 *
10
 * 1. Redistributions of source code must retain the above copyright notice, this
11
 *    list of conditions and the following disclaimer.
12
 *
13
 * 2. Redistributions in binary form must reproduce the above copyright notice,
14
 *    this list of conditions and the following disclaimer in the documentation
15
 *    and/or other materials provided with the distribution.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
21
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
28
29
#include "config.h"
30
31
#include <stdint.h>
32
33
#include "dav1d/common.h"
34
#include "dav1d/picture.h"
35
36
#include "common/intops.h"
37
#include "common/bitdepth.h"
38
39
#include "src/fg_apply.h"
40
41
static void generate_scaling(const int bitdepth,
42
                             const uint8_t points[][2], const int num,
43
                             uint8_t scaling[SCALING_SIZE])
44
1.46k
{
45
1.46k
#if BITDEPTH == 8
46
1.46k
    const int shift_x = 0;
47
1.46k
    const int scaling_size = SCALING_SIZE;
48
#else
49
    assert(bitdepth > 8);
50
    const int shift_x = bitdepth - 8;
51
    const int scaling_size = 1 << bitdepth;
52
#endif
53
54
1.46k
    if (num == 0) {
55
161
        memset(scaling, 0, scaling_size);
56
161
        return;
57
161
    }
58
59
    // Fill up the preceding entries with the initial value
60
1.30k
    memset(scaling, points[0][1], points[0][0] << shift_x);
61
62
    // Linearly interpolate the values in the middle
63
1.92k
    for (int i = 0; i < num - 1; i++) {
64
627
        const int bx = points[i][0];
65
627
        const int by = points[i][1];
66
627
        const int ex = points[i+1][0];
67
627
        const int ey = points[i+1][1];
68
627
        const int dx = ex - bx;
69
627
        const int dy = ey - by;
70
627
        assert(dx > 0);
71
627
        const int delta = dy * ((0x10000 + (dx >> 1)) / dx);
72
46.4k
        for (int x = 0, d = 0x8000; x < dx; x++) {
73
45.8k
            scaling[(bx + x) << shift_x] = by + (d >> 16);
74
45.8k
            d += delta;
75
45.8k
        }
76
627
    }
77
78
    // Fill up the remaining entries with the final value
79
1.30k
    const int n = points[num - 1][0] << shift_x;
80
1.30k
    memset(&scaling[n], points[num - 1][1], scaling_size - n);
81
82
#if BITDEPTH != 8
83
    const int pad = 1 << shift_x, rnd = pad >> 1;
84
    for (int i = 0; i < num - 1; i++) {
85
        const int bx = points[i][0] << shift_x;
86
        const int ex = points[i+1][0] << shift_x;
87
        const int dx = ex - bx;
88
        for (int x = 0; x < dx; x += pad) {
89
            const int range = scaling[bx + x + pad] - scaling[bx + x];
90
            for (int n = 1, r = rnd; n < pad; n++) {
91
                r += range;
92
                scaling[bx + x + n] = scaling[bx + x] + (r >> shift_x);
93
            }
94
        }
95
    }
96
#endif
97
1.30k
}
98
99
#ifndef UNIT_TEST
100
void bitfn(dav1d_prep_grain)(const Dav1dFilmGrainDSPContext *const dsp,
101
                             Dav1dPicture *const out,
102
                             const Dav1dPicture *const in,
103
                             uint8_t scaling[3][SCALING_SIZE],
104
                             entry grain_lut[3][GRAIN_HEIGHT+1][GRAIN_WIDTH])
105
2.91k
{
106
2.91k
    const Dav1dFilmGrainData *const data = &out->frame_hdr->film_grain.data;
107
#if BITDEPTH != 8
108
    const int bitdepth_max = (1 << out->p.bpc) - 1;
109
#endif
110
111
    // Generate grain LUTs as needed
112
2.91k
    dsp->generate_grain_y(grain_lut[0], data HIGHBD_TAIL_SUFFIX); // always needed
113
2.91k
    if (data->num_uv_points[0] || data->chroma_scaling_from_luma)
114
2.01k
        dsp->generate_grain_uv[in->p.layout - 1](grain_lut[1], grain_lut[0],
115
2.01k
                                                 data, 0 HIGHBD_TAIL_SUFFIX);
116
2.91k
    if (data->num_uv_points[1] || data->chroma_scaling_from_luma)
117
2.01k
        dsp->generate_grain_uv[in->p.layout - 1](grain_lut[2], grain_lut[0],
118
2.01k
                                                 data, 1 HIGHBD_TAIL_SUFFIX);
119
120
    // Generate scaling LUTs as needed
121
2.91k
    if (data->num_y_points || data->chroma_scaling_from_luma)
122
2.49k
        generate_scaling(in->p.bpc, data->y_points, data->num_y_points, scaling[0]);
123
2.91k
    if (data->num_uv_points[0])
124
475
        generate_scaling(in->p.bpc, data->uv_points[0], data->num_uv_points[0], scaling[1]);
125
2.91k
    if (data->num_uv_points[1])
126
481
        generate_scaling(in->p.bpc, data->uv_points[1], data->num_uv_points[1], scaling[2]);
127
128
    // Copy over the non-modified planes
129
2.91k
    assert(out->stride[0] == in->stride[0]);
130
2.91k
    if (!data->num_y_points) {
131
1.03k
        const ptrdiff_t stride = out->stride[0];
132
1.03k
        const ptrdiff_t sz = out->p.h * stride;
133
1.03k
        if (sz < 0)
134
0
            memcpy((uint8_t*) out->data[0] + sz - stride,
135
0
                   (uint8_t*) in->data[0] + sz - stride, -sz);
136
1.03k
        else
137
1.03k
            memcpy(out->data[0], in->data[0], sz);
138
1.03k
    }
139
140
2.91k
    if (in->p.layout != DAV1D_PIXEL_LAYOUT_I400 && !data->chroma_scaling_from_luma) {
141
963
        assert(out->stride[1] == in->stride[1]);
142
963
        const int ss_ver = in->p.layout == DAV1D_PIXEL_LAYOUT_I420;
143
963
        const ptrdiff_t stride = out->stride[1];
144
963
        const ptrdiff_t sz = ((out->p.h + ss_ver) >> ss_ver) * stride;
145
963
        if (sz < 0) {
146
0
            if (!data->num_uv_points[0])
147
0
                memcpy((uint8_t*) out->data[1] + sz - stride,
148
0
                       (uint8_t*) in->data[1] + sz - stride, -sz);
149
0
            if (!data->num_uv_points[1])
150
0
                memcpy((uint8_t*) out->data[2] + sz - stride,
151
0
                       (uint8_t*) in->data[2] + sz - stride, -sz);
152
963
        } else {
153
963
            if (!data->num_uv_points[0])
154
488
                memcpy(out->data[1], in->data[1], sz);
155
963
            if (!data->num_uv_points[1])
156
482
                memcpy(out->data[2], in->data[2], sz);
157
963
        }
158
963
    }
159
2.91k
}
dav1d_prep_grain_8bpc
Line
Count
Source
105
1.21k
{
106
1.21k
    const Dav1dFilmGrainData *const data = &out->frame_hdr->film_grain.data;
107
#if BITDEPTH != 8
108
    const int bitdepth_max = (1 << out->p.bpc) - 1;
109
#endif
110
111
    // Generate grain LUTs as needed
112
1.21k
    dsp->generate_grain_y(grain_lut[0], data HIGHBD_TAIL_SUFFIX); // always needed
113
1.21k
    if (data->num_uv_points[0] || data->chroma_scaling_from_luma)
114
817
        dsp->generate_grain_uv[in->p.layout - 1](grain_lut[1], grain_lut[0],
115
817
                                                 data, 0 HIGHBD_TAIL_SUFFIX);
116
1.21k
    if (data->num_uv_points[1] || data->chroma_scaling_from_luma)
117
800
        dsp->generate_grain_uv[in->p.layout - 1](grain_lut[2], grain_lut[0],
118
800
                                                 data, 1 HIGHBD_TAIL_SUFFIX);
119
120
    // Generate scaling LUTs as needed
121
1.21k
    if (data->num_y_points || data->chroma_scaling_from_luma)
122
1.00k
        generate_scaling(in->p.bpc, data->y_points, data->num_y_points, scaling[0]);
123
1.21k
    if (data->num_uv_points[0])
124
239
        generate_scaling(in->p.bpc, data->uv_points[0], data->num_uv_points[0], scaling[1]);
125
1.21k
    if (data->num_uv_points[1])
126
222
        generate_scaling(in->p.bpc, data->uv_points[1], data->num_uv_points[1], scaling[2]);
127
128
    // Copy over the non-modified planes
129
1.21k
    assert(out->stride[0] == in->stride[0]);
130
1.21k
    if (!data->num_y_points) {
131
375
        const ptrdiff_t stride = out->stride[0];
132
375
        const ptrdiff_t sz = out->p.h * stride;
133
375
        if (sz < 0)
134
0
            memcpy((uint8_t*) out->data[0] + sz - stride,
135
0
                   (uint8_t*) in->data[0] + sz - stride, -sz);
136
375
        else
137
375
            memcpy(out->data[0], in->data[0], sz);
138
375
    }
139
140
1.21k
    if (in->p.layout != DAV1D_PIXEL_LAYOUT_I400 && !data->chroma_scaling_from_luma) {
141
459
        assert(out->stride[1] == in->stride[1]);
142
459
        const int ss_ver = in->p.layout == DAV1D_PIXEL_LAYOUT_I420;
143
459
        const ptrdiff_t stride = out->stride[1];
144
459
        const ptrdiff_t sz = ((out->p.h + ss_ver) >> ss_ver) * stride;
145
459
        if (sz < 0) {
146
0
            if (!data->num_uv_points[0])
147
0
                memcpy((uint8_t*) out->data[1] + sz - stride,
148
0
                       (uint8_t*) in->data[1] + sz - stride, -sz);
149
0
            if (!data->num_uv_points[1])
150
0
                memcpy((uint8_t*) out->data[2] + sz - stride,
151
0
                       (uint8_t*) in->data[2] + sz - stride, -sz);
152
459
        } else {
153
459
            if (!data->num_uv_points[0])
154
220
                memcpy(out->data[1], in->data[1], sz);
155
459
            if (!data->num_uv_points[1])
156
237
                memcpy(out->data[2], in->data[2], sz);
157
459
        }
158
459
    }
159
1.21k
}
dav1d_prep_grain_16bpc
Line
Count
Source
105
1.69k
{
106
1.69k
    const Dav1dFilmGrainData *const data = &out->frame_hdr->film_grain.data;
107
1.69k
#if BITDEPTH != 8
108
1.69k
    const int bitdepth_max = (1 << out->p.bpc) - 1;
109
1.69k
#endif
110
111
    // Generate grain LUTs as needed
112
1.69k
    dsp->generate_grain_y(grain_lut[0], data HIGHBD_TAIL_SUFFIX); // always needed
113
1.69k
    if (data->num_uv_points[0] || data->chroma_scaling_from_luma)
114
1.19k
        dsp->generate_grain_uv[in->p.layout - 1](grain_lut[1], grain_lut[0],
115
1.19k
                                                 data, 0 HIGHBD_TAIL_SUFFIX);
116
1.69k
    if (data->num_uv_points[1] || data->chroma_scaling_from_luma)
117
1.21k
        dsp->generate_grain_uv[in->p.layout - 1](grain_lut[2], grain_lut[0],
118
1.21k
                                                 data, 1 HIGHBD_TAIL_SUFFIX);
119
120
    // Generate scaling LUTs as needed
121
1.69k
    if (data->num_y_points || data->chroma_scaling_from_luma)
122
1.48k
        generate_scaling(in->p.bpc, data->y_points, data->num_y_points, scaling[0]);
123
1.69k
    if (data->num_uv_points[0])
124
236
        generate_scaling(in->p.bpc, data->uv_points[0], data->num_uv_points[0], scaling[1]);
125
1.69k
    if (data->num_uv_points[1])
126
259
        generate_scaling(in->p.bpc, data->uv_points[1], data->num_uv_points[1], scaling[2]);
127
128
    // Copy over the non-modified planes
129
1.69k
    assert(out->stride[0] == in->stride[0]);
130
1.69k
    if (!data->num_y_points) {
131
660
        const ptrdiff_t stride = out->stride[0];
132
660
        const ptrdiff_t sz = out->p.h * stride;
133
660
        if (sz < 0)
134
0
            memcpy((uint8_t*) out->data[0] + sz - stride,
135
0
                   (uint8_t*) in->data[0] + sz - stride, -sz);
136
660
        else
137
660
            memcpy(out->data[0], in->data[0], sz);
138
660
    }
139
140
1.69k
    if (in->p.layout != DAV1D_PIXEL_LAYOUT_I400 && !data->chroma_scaling_from_luma) {
141
504
        assert(out->stride[1] == in->stride[1]);
142
504
        const int ss_ver = in->p.layout == DAV1D_PIXEL_LAYOUT_I420;
143
504
        const ptrdiff_t stride = out->stride[1];
144
504
        const ptrdiff_t sz = ((out->p.h + ss_ver) >> ss_ver) * stride;
145
504
        if (sz < 0) {
146
0
            if (!data->num_uv_points[0])
147
0
                memcpy((uint8_t*) out->data[1] + sz - stride,
148
0
                       (uint8_t*) in->data[1] + sz - stride, -sz);
149
0
            if (!data->num_uv_points[1])
150
0
                memcpy((uint8_t*) out->data[2] + sz - stride,
151
0
                       (uint8_t*) in->data[2] + sz - stride, -sz);
152
504
        } else {
153
504
            if (!data->num_uv_points[0])
154
268
                memcpy(out->data[1], in->data[1], sz);
155
504
            if (!data->num_uv_points[1])
156
245
                memcpy(out->data[2], in->data[2], sz);
157
504
        }
158
504
    }
159
1.69k
}
160
161
void bitfn(dav1d_apply_grain_row)(const Dav1dFilmGrainDSPContext *const dsp,
162
                                  Dav1dPicture *const out,
163
                                  const Dav1dPicture *const in,
164
                                  const uint8_t scaling[3][SCALING_SIZE],
165
                                  const entry grain_lut[3][GRAIN_HEIGHT+1][GRAIN_WIDTH],
166
                                  const int row)
167
33.2k
{
168
    // Synthesize grain for the affected planes
169
33.2k
    const Dav1dFilmGrainData *const data = &out->frame_hdr->film_grain.data;
170
33.2k
    const int ss_y = in->p.layout == DAV1D_PIXEL_LAYOUT_I420;
171
33.2k
    const int ss_x = in->p.layout != DAV1D_PIXEL_LAYOUT_I444;
172
33.2k
    const int cpw = (out->p.w + ss_x) >> ss_x;
173
33.2k
    const int is_id = out->seq_hdr->mtrx == DAV1D_MC_IDENTITY;
174
33.2k
    pixel *const luma_src =
175
33.2k
        ((pixel *) in->data[0]) + row * FG_BLOCK_SIZE * PXSTRIDE(in->stride[0]);
176
#if BITDEPTH != 8
177
    const int bitdepth_max = (1 << out->p.bpc) - 1;
178
#endif
179
180
33.2k
    if (data->num_y_points) {
181
24.9k
        const int bh = imin(out->p.h - row * FG_BLOCK_SIZE, FG_BLOCK_SIZE);
182
24.9k
        dsp->fgy_32x32xn(((pixel *) out->data[0]) + row * FG_BLOCK_SIZE * PXSTRIDE(out->stride[0]),
183
24.9k
                         luma_src, out->stride[0], data,
184
24.9k
                         out->p.w, scaling[0], grain_lut[0], bh, row HIGHBD_TAIL_SUFFIX);
185
24.9k
    }
186
187
33.2k
    if (!data->num_uv_points[0] && !data->num_uv_points[1] &&
188
23.3k
        !data->chroma_scaling_from_luma)
189
9.93k
    {
190
9.93k
        return;
191
9.93k
    }
192
193
23.2k
    const int bh = (imin(out->p.h - row * FG_BLOCK_SIZE, FG_BLOCK_SIZE) + ss_y) >> ss_y;
194
195
    // extend padding pixels
196
23.2k
    if (out->p.w & ss_x) {
197
7.41k
        pixel *ptr = luma_src;
198
125k
        for (int y = 0; y < bh; y++) {
199
118k
            ptr[out->p.w] = ptr[out->p.w - 1];
200
118k
            ptr += PXSTRIDE(in->stride[0]) << ss_y;
201
118k
        }
202
7.41k
    }
203
204
23.2k
    const ptrdiff_t uv_off = row * FG_BLOCK_SIZE * PXSTRIDE(out->stride[1]) >> ss_y;
205
23.2k
    if (data->chroma_scaling_from_luma) {
206
39.8k
        for (int pl = 0; pl < 2; pl++)
207
26.5k
            dsp->fguv_32x32xn[in->p.layout - 1](((pixel *) out->data[1 + pl]) + uv_off,
208
26.5k
                                                ((const pixel *) in->data[1 + pl]) + uv_off,
209
26.5k
                                                in->stride[1], data, cpw,
210
26.5k
                                                scaling[0], grain_lut[1 + pl],
211
26.5k
                                                bh, row, luma_src, in->stride[0],
212
26.5k
                                                pl, is_id HIGHBD_TAIL_SUFFIX);
213
13.3k
    } else {
214
28.8k
        for (int pl = 0; pl < 2; pl++)
215
18.9k
            if (data->num_uv_points[pl])
216
13.6k
                dsp->fguv_32x32xn[in->p.layout - 1](((pixel *) out->data[1 + pl]) + uv_off,
217
13.6k
                                                    ((const pixel *) in->data[1 + pl]) + uv_off,
218
13.6k
                                                    in->stride[1], data, cpw,
219
13.6k
                                                    scaling[1 + pl], grain_lut[1 + pl],
220
13.6k
                                                    bh, row, luma_src, in->stride[0],
221
13.6k
                                                    pl, is_id HIGHBD_TAIL_SUFFIX);
222
9.88k
    }
223
23.2k
}
dav1d_apply_grain_row_8bpc
Line
Count
Source
167
14.1k
{
168
    // Synthesize grain for the affected planes
169
14.1k
    const Dav1dFilmGrainData *const data = &out->frame_hdr->film_grain.data;
170
14.1k
    const int ss_y = in->p.layout == DAV1D_PIXEL_LAYOUT_I420;
171
14.1k
    const int ss_x = in->p.layout != DAV1D_PIXEL_LAYOUT_I444;
172
14.1k
    const int cpw = (out->p.w + ss_x) >> ss_x;
173
14.1k
    const int is_id = out->seq_hdr->mtrx == DAV1D_MC_IDENTITY;
174
14.1k
    pixel *const luma_src =
175
14.1k
        ((pixel *) in->data[0]) + row * FG_BLOCK_SIZE * PXSTRIDE(in->stride[0]);
176
#if BITDEPTH != 8
177
    const int bitdepth_max = (1 << out->p.bpc) - 1;
178
#endif
179
180
14.1k
    if (data->num_y_points) {
181
10.0k
        const int bh = imin(out->p.h - row * FG_BLOCK_SIZE, FG_BLOCK_SIZE);
182
10.0k
        dsp->fgy_32x32xn(((pixel *) out->data[0]) + row * FG_BLOCK_SIZE * PXSTRIDE(out->stride[0]),
183
10.0k
                         luma_src, out->stride[0], data,
184
10.0k
                         out->p.w, scaling[0], grain_lut[0], bh, row HIGHBD_TAIL_SUFFIX);
185
10.0k
    }
186
187
14.1k
    if (!data->num_uv_points[0] && !data->num_uv_points[1] &&
188
9.92k
        !data->chroma_scaling_from_luma)
189
3.24k
    {
190
3.24k
        return;
191
3.24k
    }
192
193
10.9k
    const int bh = (imin(out->p.h - row * FG_BLOCK_SIZE, FG_BLOCK_SIZE) + ss_y) >> ss_y;
194
195
    // extend padding pixels
196
10.9k
    if (out->p.w & ss_x) {
197
3.19k
        pixel *ptr = luma_src;
198
55.5k
        for (int y = 0; y < bh; y++) {
199
52.3k
            ptr[out->p.w] = ptr[out->p.w - 1];
200
52.3k
            ptr += PXSTRIDE(in->stride[0]) << ss_y;
201
52.3k
        }
202
3.19k
    }
203
204
10.9k
    const ptrdiff_t uv_off = row * FG_BLOCK_SIZE * PXSTRIDE(out->stride[1]) >> ss_y;
205
10.9k
    if (data->chroma_scaling_from_luma) {
206
19.9k
        for (int pl = 0; pl < 2; pl++)
207
13.2k
            dsp->fguv_32x32xn[in->p.layout - 1](((pixel *) out->data[1 + pl]) + uv_off,
208
13.2k
                                                ((const pixel *) in->data[1 + pl]) + uv_off,
209
13.2k
                                                in->stride[1], data, cpw,
210
13.2k
                                                scaling[0], grain_lut[1 + pl],
211
13.2k
                                                bh, row, luma_src, in->stride[0],
212
13.2k
                                                pl, is_id HIGHBD_TAIL_SUFFIX);
213
6.68k
    } else {
214
12.3k
        for (int pl = 0; pl < 2; pl++)
215
8.10k
            if (data->num_uv_points[pl])
216
5.44k
                dsp->fguv_32x32xn[in->p.layout - 1](((pixel *) out->data[1 + pl]) + uv_off,
217
5.44k
                                                    ((const pixel *) in->data[1 + pl]) + uv_off,
218
5.44k
                                                    in->stride[1], data, cpw,
219
5.44k
                                                    scaling[1 + pl], grain_lut[1 + pl],
220
5.44k
                                                    bh, row, luma_src, in->stride[0],
221
5.44k
                                                    pl, is_id HIGHBD_TAIL_SUFFIX);
222
4.23k
    }
223
10.9k
}
dav1d_apply_grain_row_16bpc
Line
Count
Source
167
19.0k
{
168
    // Synthesize grain for the affected planes
169
19.0k
    const Dav1dFilmGrainData *const data = &out->frame_hdr->film_grain.data;
170
19.0k
    const int ss_y = in->p.layout == DAV1D_PIXEL_LAYOUT_I420;
171
19.0k
    const int ss_x = in->p.layout != DAV1D_PIXEL_LAYOUT_I444;
172
19.0k
    const int cpw = (out->p.w + ss_x) >> ss_x;
173
19.0k
    const int is_id = out->seq_hdr->mtrx == DAV1D_MC_IDENTITY;
174
19.0k
    pixel *const luma_src =
175
19.0k
        ((pixel *) in->data[0]) + row * FG_BLOCK_SIZE * PXSTRIDE(in->stride[0]);
176
19.0k
#if BITDEPTH != 8
177
19.0k
    const int bitdepth_max = (1 << out->p.bpc) - 1;
178
19.0k
#endif
179
180
19.0k
    if (data->num_y_points) {
181
14.8k
        const int bh = imin(out->p.h - row * FG_BLOCK_SIZE, FG_BLOCK_SIZE);
182
14.8k
        dsp->fgy_32x32xn(((pixel *) out->data[0]) + row * FG_BLOCK_SIZE * PXSTRIDE(out->stride[0]),
183
14.8k
                         luma_src, out->stride[0], data,
184
14.8k
                         out->p.w, scaling[0], grain_lut[0], bh, row HIGHBD_TAIL_SUFFIX);
185
14.8k
    }
186
187
19.0k
    if (!data->num_uv_points[0] && !data->num_uv_points[1] &&
188
13.3k
        !data->chroma_scaling_from_luma)
189
6.69k
    {
190
6.69k
        return;
191
6.69k
    }
192
193
12.3k
    const int bh = (imin(out->p.h - row * FG_BLOCK_SIZE, FG_BLOCK_SIZE) + ss_y) >> ss_y;
194
195
    // extend padding pixels
196
12.3k
    if (out->p.w & ss_x) {
197
4.22k
        pixel *ptr = luma_src;
198
70.0k
        for (int y = 0; y < bh; y++) {
199
65.7k
            ptr[out->p.w] = ptr[out->p.w - 1];
200
65.7k
            ptr += PXSTRIDE(in->stride[0]) << ss_y;
201
65.7k
        }
202
4.22k
    }
203
204
12.3k
    const ptrdiff_t uv_off = row * FG_BLOCK_SIZE * PXSTRIDE(out->stride[1]) >> ss_y;
205
12.3k
    if (data->chroma_scaling_from_luma) {
206
19.9k
        for (int pl = 0; pl < 2; pl++)
207
13.2k
            dsp->fguv_32x32xn[in->p.layout - 1](((pixel *) out->data[1 + pl]) + uv_off,
208
13.2k
                                                ((const pixel *) in->data[1 + pl]) + uv_off,
209
13.2k
                                                in->stride[1], data, cpw,
210
13.2k
                                                scaling[0], grain_lut[1 + pl],
211
13.2k
                                                bh, row, luma_src, in->stride[0],
212
13.2k
                                                pl, is_id HIGHBD_TAIL_SUFFIX);
213
6.70k
    } else {
214
16.5k
        for (int pl = 0; pl < 2; pl++)
215
10.8k
            if (data->num_uv_points[pl])
216
8.25k
                dsp->fguv_32x32xn[in->p.layout - 1](((pixel *) out->data[1 + pl]) + uv_off,
217
8.25k
                                                    ((const pixel *) in->data[1 + pl]) + uv_off,
218
8.25k
                                                    in->stride[1], data, cpw,
219
8.25k
                                                    scaling[1 + pl], grain_lut[1 + pl],
220
8.25k
                                                    bh, row, luma_src, in->stride[0],
221
8.25k
                                                    pl, is_id HIGHBD_TAIL_SUFFIX);
222
5.65k
    }
223
12.3k
}
224
225
void bitfn(dav1d_apply_grain)(const Dav1dFilmGrainDSPContext *const dsp,
226
                              Dav1dPicture *const out,
227
                              const Dav1dPicture *const in)
228
0
{
229
0
    ALIGN_STK_16(entry, grain_lut, 3,[GRAIN_HEIGHT + 1][GRAIN_WIDTH]);
230
#if ARCH_X86_64 && BITDEPTH == 8
231
0
    ALIGN_STK_64(uint8_t, scaling, 3,[SCALING_SIZE]);
232
#else
233
    uint8_t scaling[3][SCALING_SIZE];
234
#endif
235
0
    const int rows = (out->p.h + FG_BLOCK_SIZE - 1) / FG_BLOCK_SIZE;
236
237
0
    bitfn(dav1d_prep_grain)(dsp, out, in, scaling, grain_lut);
238
0
    for (int row = 0; row < rows; row++)
239
0
        bitfn(dav1d_apply_grain_row)(dsp, out, in, scaling, grain_lut, row);
240
0
}
Unexecuted instantiation: dav1d_apply_grain_8bpc
Unexecuted instantiation: dav1d_apply_grain_16bpc
241
#endif