Coverage Report

Created: 2026-08-31 06:21

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/dav1d/src/mc_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 <stdlib.h>
31
#include <string.h>
32
33
#include "common/attributes.h"
34
#include "common/intops.h"
35
36
#include "src/mc.h"
37
#include "src/tables.h"
38
39
#if BITDEPTH == 8
40
1.84M
#define get_intermediate_bits(bitdepth_max) 4
41
// Output in interval [-5132, 9212], fits in int16_t as is
42
214M
#define PREP_BIAS 0
43
#else
44
// 4 for 10 bits/component, 2 for 12 bits/component
45
#define get_intermediate_bits(bitdepth_max) (14 - bitdepth_from_max(bitdepth_max))
46
// Output in interval [-20588, 36956] (10-bit), [-20602, 36983] (12-bit)
47
// Subtract a bias to ensure the output fits in int16_t
48
#define PREP_BIAS 8192
49
#endif
50
51
static NOINLINE void
52
put_c(pixel *dst, const ptrdiff_t dst_stride,
53
      const pixel *src, const ptrdiff_t src_stride, const int w, int h)
54
110k
{
55
2.08M
    do {
56
2.08M
        pixel_copy(dst, src, w);
57
58
2.08M
        dst += dst_stride;
59
2.08M
        src += src_stride;
60
2.08M
    } while (--h);
61
110k
}
62
63
static NOINLINE void
64
prep_c(int16_t *tmp, const pixel *src, const ptrdiff_t src_stride,
65
       const int w, int h HIGHBD_DECL_SUFFIX)
66
45.6k
{
67
45.6k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
68
1.52M
    do {
69
66.4M
        for (int x = 0; x < w; x++)
70
64.9M
            tmp[x] = (src[x] << intermediate_bits) - PREP_BIAS;
71
72
1.52M
        tmp += w;
73
1.52M
        src += src_stride;
74
1.52M
    } while (--h);
75
45.6k
}
76
77
#define FILTER_8TAP(src, x, F, stride) \
78
345M
    (F[0] * src[x + -3 * stride] + \
79
345M
     F[1] * src[x + -2 * stride] + \
80
345M
     F[2] * src[x + -1 * stride] + \
81
345M
     F[3] * src[x + +0 * stride] + \
82
345M
     F[4] * src[x + +1 * stride] + \
83
345M
     F[5] * src[x + +2 * stride] + \
84
345M
     F[6] * src[x + +3 * stride] + \
85
345M
     F[7] * src[x + +4 * stride])
86
87
#define FILTER_8TAP2(src, x, F) \
88
344M
    (F[0] * src[0][x] + \
89
344M
     F[1] * src[1][x] + \
90
344M
     F[2] * src[2][x] + \
91
344M
     F[3] * src[3][x] + \
92
344M
     F[4] * src[4][x] + \
93
344M
     F[5] * src[5][x] + \
94
344M
     F[6] * src[6][x] + \
95
344M
     F[7] * src[7][x])
96
97
#define DAV1D_FILTER_8TAP_RND(src, x, F, stride, sh) \
98
330M
    ((FILTER_8TAP(src, x, F, stride) + ((1 << (sh)) >> 1)) >> (sh))
99
100
#define DAV1D_FILTER_8TAP_RND2(src, x, F, stride, rnd, sh) \
101
15.0M
    ((FILTER_8TAP(src, x, F, stride) + (rnd)) >> (sh))
102
103
#define DAV1D_FILTER_8TAP_RND3(src, x, F, sh) \
104
344M
    ((FILTER_8TAP2(src, x, F) + ((1 << (sh)) >> 1)) >> (sh))
105
106
#define DAV1D_FILTER_8TAP_CLIP(src, x, F, stride, sh) \
107
24.6M
    iclip_pixel(DAV1D_FILTER_8TAP_RND(src, x, F, stride, sh))
108
109
#define DAV1D_FILTER_8TAP_CLIP2(src, x, F, stride, rnd, sh) \
110
15.0M
    iclip_pixel(DAV1D_FILTER_8TAP_RND2(src, x, F, stride, rnd, sh))
111
112
#define DAV1D_FILTER_8TAP_CLIP3(src, x, F, sh) \
113
234M
    iclip_pixel(DAV1D_FILTER_8TAP_RND3(src, x, F, sh))
114
115
#define GET_H_FILTER(mx) \
116
280M
    const int8_t *const fh = !(mx) ? NULL : w > 4 ? \
117
261M
        dav1d_mc_subpel_filters[filter_type & 3][(mx) - 1] : \
118
261M
        dav1d_mc_subpel_filters[3 + (filter_type & 1)][(mx) - 1]
119
120
#define GET_V_FILTER(my) \
121
15.2M
    const int8_t *const fv = !(my) ? NULL : h > 4 ? \
122
14.0M
        dav1d_mc_subpel_filters[filter_type >> 2][(my) - 1] : \
123
14.0M
        dav1d_mc_subpel_filters[3 + ((filter_type >> 2) & 1)][(my) - 1]
124
125
#define GET_FILTERS() \
126
255k
    GET_H_FILTER(mx); \
127
255k
    GET_V_FILTER(my)
128
129
static NOINLINE void
130
put_8tap_c(pixel *dst, ptrdiff_t dst_stride,
131
           const pixel *src, ptrdiff_t src_stride,
132
           const int w, int h, const int mx, const int my,
133
           const int filter_type HIGHBD_DECL_SUFFIX)
134
191k
{
135
191k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
136
191k
    const int intermediate_rnd = 32 + ((1 << (6 - intermediate_bits)) >> 1);
137
138
191k
    GET_FILTERS();
139
191k
    dst_stride = PXSTRIDE(dst_stride);
140
191k
    src_stride = PXSTRIDE(src_stride);
141
142
191k
    if (fh) {
143
86.3k
        if (fv) {
144
52.0k
            int tmp_h = h + 7;
145
52.0k
            int16_t mid[128 * 135], *mid_ptr = mid;
146
147
52.0k
            src -= src_stride * 3;
148
913k
            do {
149
20.0M
                for (int x = 0; x < w; x++)
150
19.1M
                    mid_ptr[x] = DAV1D_FILTER_8TAP_RND(src, x, fh, 1,
151
913k
                                                       6 - intermediate_bits);
152
153
913k
                mid_ptr += 128;
154
913k
                src += src_stride;
155
913k
            } while (--tmp_h);
156
157
52.0k
            mid_ptr = mid + 128 * 3;
158
537k
            do {
159
14.9M
                for (int x = 0; x < w; x++)
160
14.4M
                    dst[x] = DAV1D_FILTER_8TAP_CLIP(mid_ptr, x, fv, 128,
161
537k
                                                    6 + intermediate_bits);
162
163
537k
                mid_ptr += 128;
164
537k
                dst += dst_stride;
165
537k
            } while (--h);
166
52.0k
        } else {
167
415k
            do {
168
15.5M
                for (int x = 0; x < w; x++) {
169
15.0M
                    dst[x] = DAV1D_FILTER_8TAP_CLIP2(src, x, fh, 1,
170
15.0M
                                                     intermediate_rnd, 6);
171
15.0M
                }
172
173
415k
                dst += dst_stride;
174
415k
                src += src_stride;
175
415k
            } while (--h);
176
34.3k
        }
177
104k
    } else if (fv) {
178
364k
        do {
179
10.5M
            for (int x = 0; x < w; x++)
180
10.2M
                dst[x] = DAV1D_FILTER_8TAP_CLIP(src, x, fv, src_stride, 6);
181
182
364k
            dst += dst_stride;
183
364k
            src += src_stride;
184
364k
        } while (--h);
185
34.3k
    } else
186
70.5k
        put_c(dst, dst_stride, src, src_stride, w, h);
187
191k
}
188
189
static NOINLINE void
190
put_8tap_scaled_c(pixel *dst, const ptrdiff_t dst_stride,
191
                  const pixel *src, ptrdiff_t src_stride,
192
                  const int w, int h, const int mx, int my,
193
                  const int dx, const int dy, const int filter_type
194
                  HIGHBD_DECL_SUFFIX)
195
805k
{
196
805k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
197
805k
    const int intermediate_rnd = (1 << intermediate_bits) >> 1;
198
805k
    int16_t mid[128 * 8];
199
805k
    int16_t *mid_ptrs[8];
200
805k
    int in_y = -8;
201
805k
    src_stride = PXSTRIDE(src_stride);
202
203
7.24M
    for (int i = 0; i < 8; i++)
204
6.44M
        mid_ptrs[i] = &mid[128 * i];
205
206
805k
    src -= src_stride * 3;
207
208
11.9M
    for (int y = 0; y < h; y++) {
209
11.1M
        int x;
210
11.1M
        int src_y = my >> 10;
211
11.1M
        GET_V_FILTER((my & 0x3ff) >> 6);
212
213
22.2M
        while (in_y < src_y) {
214
11.1M
            int imx = mx, ioff = 0;
215
11.1M
            int16_t *mid_ptr = mid_ptrs[0];
216
217
88.8M
            for (int i = 0; i < 7; i++)
218
77.7M
                mid_ptrs[i] = mid_ptrs[i + 1];
219
11.1M
            mid_ptrs[7] = mid_ptr;
220
221
211M
            for (x = 0; x < w; x++) {
222
200M
                GET_H_FILTER(imx >> 6);
223
200M
                mid_ptr[x] = fh ? DAV1D_FILTER_8TAP_RND(src, ioff, fh, 1,
224
200M
                                                        6 - intermediate_bits) :
225
200M
                                  src[ioff] << intermediate_bits;
226
200M
                imx += dx;
227
200M
                ioff += imx >> 10;
228
200M
                imx &= 0x3ff;
229
200M
            }
230
231
11.1M
            src += src_stride;
232
11.1M
            in_y++;
233
11.1M
        }
234
235
264M
        for (x = 0; x < w; x++)
236
253M
            dst[x] = fv ? DAV1D_FILTER_8TAP_CLIP3(mid_ptrs, x, fv,
237
253M
                                                  6 + intermediate_bits) :
238
253M
                          iclip_pixel((mid_ptrs[3][x] + intermediate_rnd) >>
239
18.4M
                                              intermediate_bits);
240
241
11.1M
        my += dy;
242
11.1M
        dst += PXSTRIDE(dst_stride);
243
11.1M
    }
244
805k
}
245
246
static NOINLINE void
247
prep_8tap_c(int16_t *tmp, const pixel *src, ptrdiff_t src_stride,
248
            const int w, int h, const int mx, const int my,
249
            const int filter_type HIGHBD_DECL_SUFFIX)
250
64.6k
{
251
64.6k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
252
64.6k
    GET_FILTERS();
253
64.6k
    src_stride = PXSTRIDE(src_stride);
254
255
64.6k
    if (fh) {
256
16.2k
        if (fv) {
257
9.17k
            int tmp_h = h + 7;
258
9.17k
            int16_t mid[128 * 135], *mid_ptr = mid;
259
260
9.17k
            src -= src_stride * 3;
261
194k
            do {
262
4.62M
                for (int x = 0; x < w; x++)
263
4.43M
                    mid_ptr[x] = DAV1D_FILTER_8TAP_RND(src, x, fh, 1,
264
194k
                                                       6 - intermediate_bits);
265
266
194k
                mid_ptr += 128;
267
194k
                src += src_stride;
268
194k
            } while (--tmp_h);
269
270
9.17k
            mid_ptr = mid + 128 * 3;
271
130k
            do {
272
3.66M
                for (int x = 0; x < w; x++) {
273
3.53M
                    int t = DAV1D_FILTER_8TAP_RND(mid_ptr, x, fv, 128, 6) -
274
3.53M
                                  PREP_BIAS;
275
3.53M
                    assert(t >= INT16_MIN && t <= INT16_MAX);
276
3.53M
                    tmp[x] = t;
277
3.53M
                }
278
279
130k
                mid_ptr += 128;
280
130k
                tmp += w;
281
130k
            } while (--h);
282
9.17k
        } else {
283
275k
            do {
284
13.7M
                for (int x = 0; x < w; x++)
285
13.4M
                    tmp[x] = DAV1D_FILTER_8TAP_RND(src, x, fh, 1,
286
13.4M
                                                   6 - intermediate_bits) -
287
13.4M
                             PREP_BIAS;
288
289
275k
                tmp += w;
290
275k
                src += src_stride;
291
275k
            } while (--h);
292
7.08k
        }
293
48.3k
    } else if (fv) {
294
111k
        do {
295
3.69M
            for (int x = 0; x < w; x++)
296
3.58M
                tmp[x] = DAV1D_FILTER_8TAP_RND(src, x, fv, src_stride,
297
3.58M
                                               6 - intermediate_bits) -
298
3.58M
                         PREP_BIAS;
299
300
111k
            tmp += w;
301
111k
            src += src_stride;
302
111k
        } while (--h);
303
5.93k
    } else
304
42.4k
        prep_c(tmp, src, src_stride, w, h HIGHBD_TAIL_SUFFIX);
305
64.6k
}
306
307
static NOINLINE void
308
prep_8tap_scaled_c(int16_t *tmp, const pixel *src, ptrdiff_t src_stride,
309
                   const int w, int h, const int mx, int my,
310
                   const int dx, const int dy, const int filter_type
311
                   HIGHBD_DECL_SUFFIX)
312
173k
{
313
173k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
314
173k
    int16_t mid[128 * 8];
315
173k
    int16_t *mid_ptrs[8];
316
173k
    int in_y = -8;
317
173k
    src_stride = PXSTRIDE(src_stride);
318
319
1.55M
    for (int i = 0; i < 8; i++)
320
1.38M
        mid_ptrs[i] = &mid[128 * i];
321
322
173k
    src -= src_stride * 3;
323
324
4.00M
    for (int y = 0; y < h; y++) {
325
3.83M
        int x;
326
3.83M
        int src_y = my >> 10;
327
3.83M
        GET_V_FILTER((my & 0x3ff) >> 6);
328
329
6.86M
        while (in_y < src_y) {
330
3.02M
            int imx = mx, ioff = 0;
331
3.02M
            int16_t *mid_ptr = mid_ptrs[0];
332
333
24.1M
            for (int i = 0; i < 7; i++)
334
21.1M
                mid_ptrs[i] = mid_ptrs[i + 1];
335
3.02M
            mid_ptrs[7] = mid_ptr;
336
337
83.0M
            for (x = 0; x < w; x++) {
338
79.9M
                GET_H_FILTER(imx >> 6);
339
79.9M
                mid_ptr[x] = fh ? DAV1D_FILTER_8TAP_RND(src, ioff, fh, 1,
340
79.9M
                                                        6 - intermediate_bits) :
341
79.9M
                                  src[ioff] << intermediate_bits;
342
79.9M
                imx += dx;
343
79.9M
                ioff += imx >> 10;
344
79.9M
                imx &= 0x3ff;
345
79.9M
            }
346
347
3.02M
            src += src_stride;
348
3.02M
            in_y++;
349
3.02M
        }
350
351
122M
        for (x = 0; x < w; x++)
352
118M
            tmp[x] = (fv ? DAV1D_FILTER_8TAP_RND3(mid_ptrs, x, fv, 6)
353
118M
                         : mid_ptrs[3][x]) - PREP_BIAS;
354
355
3.83M
        my += dy;
356
3.83M
        tmp += w;
357
3.83M
    }
358
173k
}
359
360
#define filter_fns(type, type_h, type_v) \
361
static void put_8tap_##type##_c(pixel *const dst, \
362
                                const ptrdiff_t dst_stride, \
363
                                const pixel *const src, \
364
                                const ptrdiff_t src_stride, \
365
                                const int w, const int h, \
366
                                const int mx, const int my \
367
191k
                                HIGHBD_DECL_SUFFIX) \
368
191k
{ \
369
191k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
191k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
191k
} \
mc_tmpl.c:put_8tap_regular_c
Line
Count
Source
367
97.1k
                                HIGHBD_DECL_SUFFIX) \
368
97.1k
{ \
369
97.1k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
97.1k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
97.1k
} \
mc_tmpl.c:put_8tap_regular_smooth_c
Line
Count
Source
367
6.10k
                                HIGHBD_DECL_SUFFIX) \
368
6.10k
{ \
369
6.10k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
6.10k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
6.10k
} \
mc_tmpl.c:put_8tap_regular_sharp_c
Line
Count
Source
367
591
                                HIGHBD_DECL_SUFFIX) \
368
591
{ \
369
591
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
591
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
591
} \
mc_tmpl.c:put_8tap_sharp_regular_c
Line
Count
Source
367
1.10k
                                HIGHBD_DECL_SUFFIX) \
368
1.10k
{ \
369
1.10k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
1.10k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
1.10k
} \
mc_tmpl.c:put_8tap_sharp_smooth_c
Line
Count
Source
367
306
                                HIGHBD_DECL_SUFFIX) \
368
306
{ \
369
306
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
306
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
306
} \
mc_tmpl.c:put_8tap_sharp_c
Line
Count
Source
367
9.46k
                                HIGHBD_DECL_SUFFIX) \
368
9.46k
{ \
369
9.46k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
9.46k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
9.46k
} \
mc_tmpl.c:put_8tap_smooth_regular_c
Line
Count
Source
367
4.19k
                                HIGHBD_DECL_SUFFIX) \
368
4.19k
{ \
369
4.19k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
4.19k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
4.19k
} \
mc_tmpl.c:put_8tap_smooth_c
Line
Count
Source
367
72.1k
                                HIGHBD_DECL_SUFFIX) \
368
72.1k
{ \
369
72.1k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
72.1k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
72.1k
} \
mc_tmpl.c:put_8tap_smooth_sharp_c
Line
Count
Source
367
243
                                HIGHBD_DECL_SUFFIX) \
368
243
{ \
369
243
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
243
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
243
} \
372
static void put_8tap_##type##_scaled_c(pixel *const dst, \
373
                                       const ptrdiff_t dst_stride, \
374
                                       const pixel *const src, \
375
                                       const ptrdiff_t src_stride, \
376
                                       const int w, const int h, \
377
                                       const int mx, const int my, \
378
                                       const int dx, const int dy \
379
805k
                                       HIGHBD_DECL_SUFFIX) \
380
805k
{ \
381
805k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
805k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
805k
} \
mc_tmpl.c:put_8tap_regular_scaled_c
Line
Count
Source
379
613k
                                       HIGHBD_DECL_SUFFIX) \
380
613k
{ \
381
613k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
613k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
613k
} \
mc_tmpl.c:put_8tap_regular_smooth_scaled_c
Line
Count
Source
379
37.4k
                                       HIGHBD_DECL_SUFFIX) \
380
37.4k
{ \
381
37.4k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
37.4k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
37.4k
} \
mc_tmpl.c:put_8tap_regular_sharp_scaled_c
Line
Count
Source
379
8.28k
                                       HIGHBD_DECL_SUFFIX) \
380
8.28k
{ \
381
8.28k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
8.28k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
8.28k
} \
mc_tmpl.c:put_8tap_sharp_regular_scaled_c
Line
Count
Source
379
10.6k
                                       HIGHBD_DECL_SUFFIX) \
380
10.6k
{ \
381
10.6k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
10.6k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
10.6k
} \
mc_tmpl.c:put_8tap_sharp_smooth_scaled_c
Line
Count
Source
379
2.16k
                                       HIGHBD_DECL_SUFFIX) \
380
2.16k
{ \
381
2.16k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
2.16k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
2.16k
} \
mc_tmpl.c:put_8tap_sharp_scaled_c
Line
Count
Source
379
35.4k
                                       HIGHBD_DECL_SUFFIX) \
380
35.4k
{ \
381
35.4k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
35.4k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
35.4k
} \
mc_tmpl.c:put_8tap_smooth_regular_scaled_c
Line
Count
Source
379
41.5k
                                       HIGHBD_DECL_SUFFIX) \
380
41.5k
{ \
381
41.5k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
41.5k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
41.5k
} \
mc_tmpl.c:put_8tap_smooth_scaled_c
Line
Count
Source
379
54.0k
                                       HIGHBD_DECL_SUFFIX) \
380
54.0k
{ \
381
54.0k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
54.0k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
54.0k
} \
mc_tmpl.c:put_8tap_smooth_sharp_scaled_c
Line
Count
Source
379
2.32k
                                       HIGHBD_DECL_SUFFIX) \
380
2.32k
{ \
381
2.32k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
2.32k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
2.32k
} \
384
static void prep_8tap_##type##_c(int16_t *const tmp, \
385
                                 const pixel *const src, \
386
                                 const ptrdiff_t src_stride, \
387
                                 const int w, const int h, \
388
                                 const int mx, const int my \
389
64.6k
                                 HIGHBD_DECL_SUFFIX) \
390
64.6k
{ \
391
64.6k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
64.6k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
64.6k
} \
mc_tmpl.c:prep_8tap_regular_c
Line
Count
Source
389
27.4k
                                 HIGHBD_DECL_SUFFIX) \
390
27.4k
{ \
391
27.4k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
27.4k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
27.4k
} \
mc_tmpl.c:prep_8tap_regular_smooth_c
Line
Count
Source
389
587
                                 HIGHBD_DECL_SUFFIX) \
390
587
{ \
391
587
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
587
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
587
} \
mc_tmpl.c:prep_8tap_regular_sharp_c
Line
Count
Source
389
1.51k
                                 HIGHBD_DECL_SUFFIX) \
390
1.51k
{ \
391
1.51k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
1.51k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
1.51k
} \
mc_tmpl.c:prep_8tap_sharp_regular_c
Line
Count
Source
389
1.83k
                                 HIGHBD_DECL_SUFFIX) \
390
1.83k
{ \
391
1.83k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
1.83k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
1.83k
} \
mc_tmpl.c:prep_8tap_sharp_smooth_c
Line
Count
Source
389
727
                                 HIGHBD_DECL_SUFFIX) \
390
727
{ \
391
727
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
727
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
727
} \
mc_tmpl.c:prep_8tap_sharp_c
Line
Count
Source
389
5.70k
                                 HIGHBD_DECL_SUFFIX) \
390
5.70k
{ \
391
5.70k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
5.70k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
5.70k
} \
mc_tmpl.c:prep_8tap_smooth_regular_c
Line
Count
Source
389
865
                                 HIGHBD_DECL_SUFFIX) \
390
865
{ \
391
865
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
865
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
865
} \
mc_tmpl.c:prep_8tap_smooth_c
Line
Count
Source
389
25.2k
                                 HIGHBD_DECL_SUFFIX) \
390
25.2k
{ \
391
25.2k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
25.2k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
25.2k
} \
mc_tmpl.c:prep_8tap_smooth_sharp_c
Line
Count
Source
389
624
                                 HIGHBD_DECL_SUFFIX) \
390
624
{ \
391
624
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
624
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
624
} \
394
static void prep_8tap_##type##_scaled_c(int16_t *const tmp, \
395
                                        const pixel *const src, \
396
                                        const ptrdiff_t src_stride, \
397
                                        const int w, const int h, \
398
                                        const int mx, const int my, \
399
                                        const int dx, const int dy \
400
173k
                                        HIGHBD_DECL_SUFFIX) \
401
173k
{ \
402
173k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
173k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
173k
}
mc_tmpl.c:prep_8tap_regular_scaled_c
Line
Count
Source
400
75.8k
                                        HIGHBD_DECL_SUFFIX) \
401
75.8k
{ \
402
75.8k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
75.8k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
75.8k
}
mc_tmpl.c:prep_8tap_regular_smooth_scaled_c
Line
Count
Source
400
9.71k
                                        HIGHBD_DECL_SUFFIX) \
401
9.71k
{ \
402
9.71k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
9.71k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
9.71k
}
mc_tmpl.c:prep_8tap_regular_sharp_scaled_c
Line
Count
Source
400
10.0k
                                        HIGHBD_DECL_SUFFIX) \
401
10.0k
{ \
402
10.0k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
10.0k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
10.0k
}
mc_tmpl.c:prep_8tap_sharp_regular_scaled_c
Line
Count
Source
400
24.1k
                                        HIGHBD_DECL_SUFFIX) \
401
24.1k
{ \
402
24.1k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
24.1k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
24.1k
}
mc_tmpl.c:prep_8tap_sharp_smooth_scaled_c
Line
Count
Source
400
4.03k
                                        HIGHBD_DECL_SUFFIX) \
401
4.03k
{ \
402
4.03k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
4.03k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
4.03k
}
mc_tmpl.c:prep_8tap_sharp_scaled_c
Line
Count
Source
400
17.8k
                                        HIGHBD_DECL_SUFFIX) \
401
17.8k
{ \
402
17.8k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
17.8k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
17.8k
}
mc_tmpl.c:prep_8tap_smooth_regular_scaled_c
Line
Count
Source
400
15.8k
                                        HIGHBD_DECL_SUFFIX) \
401
15.8k
{ \
402
15.8k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
15.8k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
15.8k
}
mc_tmpl.c:prep_8tap_smooth_scaled_c
Line
Count
Source
400
12.0k
                                        HIGHBD_DECL_SUFFIX) \
401
12.0k
{ \
402
12.0k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
12.0k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
12.0k
}
mc_tmpl.c:prep_8tap_smooth_sharp_scaled_c
Line
Count
Source
400
3.52k
                                        HIGHBD_DECL_SUFFIX) \
401
3.52k
{ \
402
3.52k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
3.52k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
3.52k
}
405
406
filter_fns(regular,        DAV1D_FILTER_8TAP_REGULAR, DAV1D_FILTER_8TAP_REGULAR)
407
filter_fns(regular_sharp,  DAV1D_FILTER_8TAP_REGULAR, DAV1D_FILTER_8TAP_SHARP)
408
filter_fns(regular_smooth, DAV1D_FILTER_8TAP_REGULAR, DAV1D_FILTER_8TAP_SMOOTH)
409
filter_fns(smooth,         DAV1D_FILTER_8TAP_SMOOTH,  DAV1D_FILTER_8TAP_SMOOTH)
410
filter_fns(smooth_regular, DAV1D_FILTER_8TAP_SMOOTH,  DAV1D_FILTER_8TAP_REGULAR)
411
filter_fns(smooth_sharp,   DAV1D_FILTER_8TAP_SMOOTH,  DAV1D_FILTER_8TAP_SHARP)
412
filter_fns(sharp,          DAV1D_FILTER_8TAP_SHARP,   DAV1D_FILTER_8TAP_SHARP)
413
filter_fns(sharp_regular,  DAV1D_FILTER_8TAP_SHARP,   DAV1D_FILTER_8TAP_REGULAR)
414
filter_fns(sharp_smooth,   DAV1D_FILTER_8TAP_SHARP,   DAV1D_FILTER_8TAP_SMOOTH)
415
416
#define FILTER_BILIN(src, x, mxy, stride) \
417
30.8M
    (16 * src[x] + ((mxy) * (src[x + stride] - src[x])))
418
419
#define FILTER_BILIN_RND(src, x, mxy, stride, sh) \
420
30.8M
    ((FILTER_BILIN(src, x, mxy, stride) + ((1 << (sh)) >> 1)) >> (sh))
421
422
#define FILTER_BILIN_CLIP(src, x, mxy, stride, sh) \
423
3.28M
    iclip_pixel(FILTER_BILIN_RND(src, x, mxy, stride, sh))
424
425
#define FILTER_BILIN2(src1, src2, x, mxy) \
426
25.2M
    (16 * src1[x] + ((mxy) * (src2[x] - src1[x])))
427
428
#define FILTER_BILIN_RND2(src1, src2, x, mxy, sh) \
429
25.2M
    ((FILTER_BILIN2(src1, src2, x, mxy) + ((1 << (sh)) >> 1)) >> (sh))
430
431
#define FILTER_BILIN_CLIP2(src1, src2, x, mxy, sh) \
432
21.0M
    iclip_pixel(FILTER_BILIN_RND2(src1, src2, x, mxy, sh))
433
434
static void put_bilin_c(pixel *dst, ptrdiff_t dst_stride,
435
                        const pixel *src, ptrdiff_t src_stride,
436
                        const int w, int h, const int mx, const int my
437
                        HIGHBD_DECL_SUFFIX)
438
69.5k
{
439
69.5k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
440
69.5k
    const int intermediate_rnd = (1 << intermediate_bits) >> 1;
441
69.5k
    dst_stride = PXSTRIDE(dst_stride);
442
69.5k
    src_stride = PXSTRIDE(src_stride);
443
444
69.5k
    if (mx) {
445
21.5k
        if (my) {
446
14.3k
            int16_t mid[128 * 129], *mid_ptr = mid;
447
14.3k
            int tmp_h = h + 1;
448
449
151k
            do {
450
2.59M
                for (int x = 0; x < w; x++)
451
2.43M
                    mid_ptr[x] = FILTER_BILIN_RND(src, x, mx, 1,
452
151k
                                                  4 - intermediate_bits);
453
454
151k
                mid_ptr += 128;
455
151k
                src += src_stride;
456
151k
            } while (--tmp_h);
457
458
14.3k
            mid_ptr = mid;
459
136k
            do {
460
2.42M
                for (int x = 0; x < w; x++)
461
2.28M
                    dst[x] = FILTER_BILIN_CLIP(mid_ptr, x, my, 128,
462
136k
                                               4 + intermediate_bits);
463
464
136k
                mid_ptr += 128;
465
136k
                dst += dst_stride;
466
136k
            } while (--h);
467
14.3k
        } else {
468
82.7k
            do {
469
2.02M
                for (int x = 0; x < w; x++) {
470
1.93M
                    const int px = FILTER_BILIN_RND(src, x, mx, 1,
471
1.93M
                                                    4 - intermediate_bits);
472
1.93M
                    dst[x] = iclip_pixel((px + intermediate_rnd) >> intermediate_bits);
473
1.93M
                }
474
475
82.7k
                dst += dst_stride;
476
82.7k
                src += src_stride;
477
82.7k
            } while (--h);
478
7.14k
        }
479
48.0k
    } else if (my) {
480
68.9k
        do {
481
1.07M
            for (int x = 0; x < w; x++)
482
1.00M
                dst[x] = FILTER_BILIN_CLIP(src, x, my, src_stride, 4);
483
484
68.9k
            dst += dst_stride;
485
68.9k
            src += src_stride;
486
68.9k
        } while (--h);
487
7.79k
    } else
488
40.2k
        put_c(dst, dst_stride, src, src_stride, w, h);
489
69.5k
}
490
491
static void put_bilin_scaled_c(pixel *dst, ptrdiff_t dst_stride,
492
                               const pixel *src, ptrdiff_t src_stride,
493
                               const int w, int h, const int mx, int my,
494
                               const int dx, const int dy
495
                               HIGHBD_DECL_SUFFIX)
496
50.8k
{
497
50.8k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
498
50.8k
    int16_t mid[128 * 2];
499
50.8k
    int in_y = -2;
500
501
730k
    do {
502
730k
        int x;
503
730k
        int y = my >> 10;
504
730k
        int16_t *mid1 = &mid[(y & 1) * 128];
505
730k
        int16_t *mid2 = &mid[((y + 1) & 1) * 128];
506
730k
        int dmy = my & 0x3ff;
507
508
1.06M
        while (in_y < y) {
509
339k
            int imx = mx, ioff = 0;
510
339k
            int16_t *mid_ptr = &mid[(in_y & 1) * 128];
511
512
15.1M
            for (x = 0; x < w; x++) {
513
14.7M
                mid_ptr[x] = FILTER_BILIN_RND(src, ioff, imx >> 6, 1,
514
14.7M
                                              4 - intermediate_bits);
515
14.7M
                imx += dx;
516
14.7M
                ioff += imx >> 10;
517
14.7M
                imx &= 0x3ff;
518
14.7M
            }
519
520
339k
            src += PXSTRIDE(src_stride);
521
339k
            in_y++;
522
339k
        }
523
524
21.7M
        for (x = 0; x < w; x++)
525
21.0M
            dst[x] = FILTER_BILIN_CLIP2(mid1, mid2, x, dmy >> 6,
526
730k
                                       4 + intermediate_bits);
527
528
730k
        my += dy;
529
730k
        dst += PXSTRIDE(dst_stride);
530
730k
    } while (--h);
531
50.8k
}
532
533
static void prep_bilin_c(int16_t *tmp,
534
                         const pixel *src, ptrdiff_t src_stride,
535
                         const int w, int h, const int mx, const int my
536
                         HIGHBD_DECL_SUFFIX)
537
13.7k
{
538
13.7k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
539
13.7k
    src_stride = PXSTRIDE(src_stride);
540
541
13.7k
    if (mx) {
542
8.04k
        if (my) {
543
5.37k
            int16_t mid[128 * 129], *mid_ptr = mid;
544
5.37k
            int tmp_h = h + 1;
545
546
78.1k
            do {
547
1.72M
                for (int x = 0; x < w; x++)
548
1.64M
                    mid_ptr[x] = FILTER_BILIN_RND(src, x, mx, 1,
549
78.1k
                                                  4 - intermediate_bits);
550
551
78.1k
                mid_ptr += 128;
552
78.1k
                src += src_stride;
553
78.1k
            } while (--tmp_h);
554
555
5.37k
            mid_ptr = mid;
556
72.7k
            do {
557
1.63M
                for (int x = 0; x < w; x++)
558
1.56M
                    tmp[x] = FILTER_BILIN_RND(mid_ptr, x, my, 128, 4) -
559
1.56M
                             PREP_BIAS;
560
561
72.7k
                mid_ptr += 128;
562
72.7k
                tmp += w;
563
72.7k
            } while (--h);
564
5.37k
        } else {
565
51.0k
            do {
566
1.09M
                for (int x = 0; x < w; x++)
567
1.04M
                    tmp[x] = FILTER_BILIN_RND(src, x, mx, 1,
568
1.04M
                                              4 - intermediate_bits) -
569
1.04M
                             PREP_BIAS;
570
571
51.0k
                tmp += w;
572
51.0k
                src += src_stride;
573
51.0k
            } while (--h);
574
2.66k
        }
575
8.04k
    } else if (my) {
576
41.0k
        do {
577
1.00M
            for (int x = 0; x < w; x++)
578
961k
                tmp[x] = FILTER_BILIN_RND(src, x, my, src_stride,
579
961k
                                          4 - intermediate_bits) - PREP_BIAS;
580
581
41.0k
            tmp += w;
582
41.0k
            src += src_stride;
583
41.0k
        } while (--h);
584
2.43k
    } else
585
3.28k
        prep_c(tmp, src, src_stride, w, h HIGHBD_TAIL_SUFFIX);
586
13.7k
}
587
588
static void prep_bilin_scaled_c(int16_t *tmp,
589
                                const pixel *src, ptrdiff_t src_stride,
590
                                const int w, int h, const int mx, int my,
591
                                const int dx, const int dy HIGHBD_DECL_SUFFIX)
592
5.76k
{
593
5.76k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
594
5.76k
    int16_t mid[128 * 2];
595
5.76k
    int in_y = -2;
596
597
113k
    do {
598
113k
        int x;
599
113k
        int y = my >> 10;
600
113k
        int16_t *mid1 = &mid[(y & 1) * 128];
601
113k
        int16_t *mid2 = &mid[((y + 1) & 1) * 128];
602
113k
        int dmy = my & 0x3ff;
603
604
193k
        while (in_y < y) {
605
79.6k
            int imx = mx, ioff = 0;
606
79.6k
            int16_t *mid_ptr = &mid[(in_y & 1) * 128];
607
608
3.26M
            for (x = 0; x < w; x++) {
609
3.18M
                mid_ptr[x] = FILTER_BILIN_RND(src, ioff, imx >> 6, 1,
610
3.18M
                                              4 - intermediate_bits);
611
3.18M
                imx += dx;
612
3.18M
                ioff += imx >> 10;
613
3.18M
                imx &= 0x3ff;
614
3.18M
            }
615
616
79.6k
            src += PXSTRIDE(src_stride);
617
79.6k
            in_y++;
618
79.6k
        }
619
620
4.30M
        for (x = 0; x < w; x++)
621
4.18M
            tmp[x] = FILTER_BILIN_RND2(mid1, mid2, x, dmy >> 6, 4) - PREP_BIAS;
622
623
113k
        my += dy;
624
113k
        tmp += w;
625
113k
    } while (--h);
626
5.76k
}
627
628
static void avg_c(pixel *dst, const ptrdiff_t dst_stride,
629
                  const int16_t *tmp1, const int16_t *tmp2, const int w, int h
630
                  HIGHBD_DECL_SUFFIX)
631
110k
{
632
110k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
633
110k
    const int sh = intermediate_bits + 1;
634
110k
    const int rnd = (1 << intermediate_bits) + PREP_BIAS * 2;
635
2.41M
    do {
636
77.7M
        for (int x = 0; x < w; x++)
637
75.3M
            dst[x] = iclip_pixel((tmp1[x] + tmp2[x] + rnd) >> sh);
638
639
2.41M
        tmp1 += w;
640
2.41M
        tmp2 += w;
641
2.41M
        dst += PXSTRIDE(dst_stride);
642
2.41M
    } while (--h);
643
110k
}
644
645
static void w_avg_c(pixel *dst, const ptrdiff_t dst_stride,
646
                    const int16_t *tmp1, const int16_t *tmp2, const int w, int h,
647
                    const int weight HIGHBD_DECL_SUFFIX)
648
5.27k
{
649
5.27k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
650
5.27k
    const int sh = intermediate_bits + 4;
651
5.27k
    const int rnd = (8 << intermediate_bits) + PREP_BIAS * 16;
652
132k
    do {
653
6.32M
        for (int x = 0; x < w; x++)
654
6.19M
            dst[x] = iclip_pixel((tmp1[x] * weight +
655
6.19M
                                  tmp2[x] * (16 - weight) + rnd) >> sh);
656
657
132k
        tmp1 += w;
658
132k
        tmp2 += w;
659
132k
        dst += PXSTRIDE(dst_stride);
660
132k
    } while (--h);
661
5.27k
}
662
663
static void mask_c(pixel *dst, const ptrdiff_t dst_stride,
664
                   const int16_t *tmp1, const int16_t *tmp2, const int w, int h,
665
                   const uint8_t *mask HIGHBD_DECL_SUFFIX)
666
12.4k
{
667
12.4k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
668
12.4k
    const int sh = intermediate_bits + 6;
669
12.4k
    const int rnd = (32 << intermediate_bits) + PREP_BIAS * 64;
670
343k
    do {
671
12.9M
        for (int x = 0; x < w; x++)
672
12.5M
            dst[x] = iclip_pixel((tmp1[x] * mask[x] +
673
12.5M
                                  tmp2[x] * (64 - mask[x]) + rnd) >> sh);
674
675
343k
        tmp1 += w;
676
343k
        tmp2 += w;
677
343k
        mask += w;
678
343k
        dst += PXSTRIDE(dst_stride);
679
343k
    } while (--h);
680
12.4k
}
681
682
35.5M
#define blend_px(a, b, m) (((a * (64 - m) + b * m) + 32) >> 6)
683
static void blend_c(pixel *dst, const ptrdiff_t dst_stride, const pixel *tmp,
684
                    const int w, int h, const uint8_t *mask)
685
43.7k
{
686
546k
    do {
687
9.09M
        for (int x = 0; x < w; x++) {
688
8.54M
            dst[x] = blend_px(dst[x], tmp[x], mask[x]);
689
8.54M
        }
690
546k
        dst += PXSTRIDE(dst_stride);
691
546k
        tmp += w;
692
546k
        mask += w;
693
546k
    } while (--h);
694
43.7k
}
695
696
static void blend_v_c(pixel *dst, const ptrdiff_t dst_stride, const pixel *tmp,
697
                      const int w, int h)
698
161k
{
699
161k
    const uint8_t *const mask = &dav1d_obmc_masks[w];
700
2.33M
    do {
701
17.8M
        for (int x = 0; x < (w * 3) >> 2; x++) {
702
15.5M
            dst[x] = blend_px(dst[x], tmp[x], mask[x]);
703
15.5M
        }
704
2.33M
        dst += PXSTRIDE(dst_stride);
705
2.33M
        tmp += w;
706
2.33M
    } while (--h);
707
161k
}
708
709
static void blend_h_c(pixel *dst, const ptrdiff_t dst_stride, const pixel *tmp,
710
                      const int w, int h)
711
140k
{
712
140k
    const uint8_t *mask = &dav1d_obmc_masks[h];
713
140k
    h = (h * 3) >> 2;
714
762k
    do {
715
762k
        const int m = *mask++;
716
12.1M
        for (int x = 0; x < w; x++) {
717
11.4M
            dst[x] = blend_px(dst[x], tmp[x], m);
718
11.4M
        }
719
762k
        dst += PXSTRIDE(dst_stride);
720
762k
        tmp += w;
721
762k
    } while (--h);
722
140k
}
723
724
static void w_mask_c(pixel *dst, const ptrdiff_t dst_stride,
725
                     const int16_t *tmp1, const int16_t *tmp2, const int w, int h,
726
                     uint8_t *mask, const int sign,
727
                     const int ss_hor, const int ss_ver HIGHBD_DECL_SUFFIX)
728
3.92k
{
729
    // store mask at 2x2 resolution, i.e. store 2x1 sum for even rows,
730
    // and then load this intermediate to calculate final value for odd rows
731
3.92k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
732
3.92k
    const int bitdepth = bitdepth_from_max(bitdepth_max);
733
3.92k
    const int sh = intermediate_bits + 6;
734
3.92k
    const int rnd = (32 << intermediate_bits) + PREP_BIAS * 64;
735
3.92k
    const int mask_sh = bitdepth + intermediate_bits - 4;
736
3.92k
    const int mask_rnd = 1 << (mask_sh - 5);
737
203k
    do {
738
7.73M
        for (int x = 0; x < w; x++) {
739
7.53M
            const int tmpdiff = tmp1[x] - tmp2[x];
740
7.53M
            const int m = imin(38 + ((abs(tmpdiff) + mask_rnd) >> mask_sh), 64);
741
7.53M
            dst[x] = iclip_pixel((tmpdiff * m + tmp2[x] * 64 + rnd) >> sh);
742
743
7.53M
            if (ss_hor) {
744
2.10M
                x++;
745
746
2.10M
                const int tmpdiff = tmp1[x] - tmp2[x];
747
2.10M
                const int n = imin(38 + ((abs(tmpdiff) + mask_rnd) >> mask_sh), 64);
748
2.10M
                dst[x] = iclip_pixel((tmpdiff * n + tmp2[x] * 64 + rnd) >> sh);
749
750
2.10M
                if (h & ss_ver) {
751
1.04M
                    mask[x >> 1] = (m + n + mask[x >> 1] + 2 - sign) >> 2;
752
1.05M
                } else if (ss_ver) {
753
1.04M
                    mask[x >> 1] = m + n;
754
1.04M
                } else {
755
12.8k
                    mask[x >> 1] = (m + n + 1 - sign) >> 1;
756
12.8k
                }
757
5.43M
            } else {
758
5.43M
                mask[x] = m;
759
5.43M
            }
760
7.53M
        }
761
762
203k
        tmp1 += w;
763
203k
        tmp2 += w;
764
203k
        dst += PXSTRIDE(dst_stride);
765
203k
        if (!ss_ver || (h & 1)) mask += w >> ss_hor;
766
203k
    } while (--h);
767
3.92k
}
768
769
#define w_mask_fns(ssn, ss_hor, ss_ver) \
770
static void w_mask_##ssn##_c(pixel *const dst, const ptrdiff_t dst_stride, \
771
                             const int16_t *const tmp1, const int16_t *const tmp2, \
772
                             const int w, const int h, uint8_t *mask, \
773
3.92k
                             const int sign HIGHBD_DECL_SUFFIX) \
774
3.92k
{ \
775
3.92k
    w_mask_c(dst, dst_stride, tmp1, tmp2, w, h, mask, sign, ss_hor, ss_ver \
776
3.92k
             HIGHBD_TAIL_SUFFIX); \
777
3.92k
}
mc_tmpl.c:w_mask_444_c
Line
Count
Source
773
2.33k
                             const int sign HIGHBD_DECL_SUFFIX) \
774
2.33k
{ \
775
2.33k
    w_mask_c(dst, dst_stride, tmp1, tmp2, w, h, mask, sign, ss_hor, ss_ver \
776
2.33k
             HIGHBD_TAIL_SUFFIX); \
777
2.33k
}
mc_tmpl.c:w_mask_422_c
Line
Count
Source
773
117
                             const int sign HIGHBD_DECL_SUFFIX) \
774
117
{ \
775
117
    w_mask_c(dst, dst_stride, tmp1, tmp2, w, h, mask, sign, ss_hor, ss_ver \
776
117
             HIGHBD_TAIL_SUFFIX); \
777
117
}
mc_tmpl.c:w_mask_420_c
Line
Count
Source
773
1.47k
                             const int sign HIGHBD_DECL_SUFFIX) \
774
1.47k
{ \
775
1.47k
    w_mask_c(dst, dst_stride, tmp1, tmp2, w, h, mask, sign, ss_hor, ss_ver \
776
1.47k
             HIGHBD_TAIL_SUFFIX); \
777
1.47k
}
778
779
w_mask_fns(444, 0, 0);
780
w_mask_fns(422, 1, 0);
781
w_mask_fns(420, 1, 1);
782
783
#undef w_mask_fns
784
785
#define FILTER_WARP_RND(src, x, F, stride, sh) \
786
41.4M
    ((F[0] * src[x - 3 * stride] + \
787
41.4M
      F[1] * src[x - 2 * stride] + \
788
41.4M
      F[2] * src[x - 1 * stride] + \
789
41.4M
      F[3] * src[x + 0 * stride] + \
790
41.4M
      F[4] * src[x + 1 * stride] + \
791
41.4M
      F[5] * src[x + 2 * stride] + \
792
41.4M
      F[6] * src[x + 3 * stride] + \
793
41.4M
      F[7] * src[x + 4 * stride] + \
794
41.4M
      ((1 << (sh)) >> 1)) >> (sh))
795
796
#define FILTER_WARP_CLIP(src, x, F, stride, sh) \
797
8.66M
    iclip_pixel(FILTER_WARP_RND(src, x, F, stride, sh))
798
799
static void warp_affine_8x8_c(pixel *dst, const ptrdiff_t dst_stride,
800
                              const pixel *src, const ptrdiff_t src_stride,
801
                              const int16_t *const abcd, int mx, int my
802
                              HIGHBD_DECL_SUFFIX)
803
261k
{
804
261k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
805
261k
    int16_t mid[15 * 8], *mid_ptr = mid;
806
807
261k
    src -= 3 * PXSTRIDE(src_stride);
808
3.86M
    for (int y = 0; y < 15; y++, mx += abcd[1]) {
809
30.4M
        for (int x = 0, tmx = mx; x < 8; x++, tmx += abcd[0]) {
810
26.8M
            const int8_t *const filter =
811
26.8M
                dav1d_mc_warp_filter[64 + ((tmx + 512) >> 10)];
812
813
26.8M
            mid_ptr[x] = FILTER_WARP_RND(src, x, filter, 1,
814
26.8M
                                         7 - intermediate_bits);
815
26.8M
        }
816
3.60M
        src += PXSTRIDE(src_stride);
817
3.60M
        mid_ptr += 8;
818
3.60M
    }
819
820
261k
    mid_ptr = &mid[3 * 8];
821
1.40M
    for (int y = 0; y < 8; y++, my += abcd[3]) {
822
9.81M
        for (int x = 0, tmy = my; x < 8; x++, tmy += abcd[2]) {
823
8.66M
            const int8_t *const filter =
824
8.66M
                dav1d_mc_warp_filter[64 + ((tmy + 512) >> 10)];
825
826
8.66M
            dst[x] = FILTER_WARP_CLIP(mid_ptr, x, filter, 8,
827
8.66M
                                      7 + intermediate_bits);
828
8.66M
        }
829
1.14M
        mid_ptr += 8;
830
1.14M
        dst += PXSTRIDE(dst_stride);
831
1.14M
    }
832
261k
}
833
834
static void warp_affine_8x8t_c(int16_t *tmp, const ptrdiff_t tmp_stride,
835
                               const pixel *src, const ptrdiff_t src_stride,
836
                               const int16_t *const abcd, int mx, int my
837
                               HIGHBD_DECL_SUFFIX)
838
32.3k
{
839
32.3k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
840
32.3k
    int16_t mid[15 * 8], *mid_ptr = mid;
841
842
32.3k
    src -= 3 * PXSTRIDE(src_stride);
843
517k
    for (int y = 0; y < 15; y++, mx += abcd[1]) {
844
4.36M
        for (int x = 0, tmx = mx; x < 8; x++, tmx += abcd[0]) {
845
3.88M
            const int8_t *const filter =
846
3.88M
                dav1d_mc_warp_filter[64 + ((tmx + 512) >> 10)];
847
848
3.88M
            mid_ptr[x] = FILTER_WARP_RND(src, x, filter, 1,
849
3.88M
                                         7 - intermediate_bits);
850
3.88M
        }
851
485k
        src += PXSTRIDE(src_stride);
852
485k
        mid_ptr += 8;
853
485k
    }
854
855
32.3k
    mid_ptr = &mid[3 * 8];
856
291k
    for (int y = 0; y < 8; y++, my += abcd[3]) {
857
2.33M
        for (int x = 0, tmy = my; x < 8; x++, tmy += abcd[2]) {
858
2.07M
            const int8_t *const filter =
859
2.07M
                dav1d_mc_warp_filter[64 + ((tmy + 512) >> 10)];
860
861
2.07M
            tmp[x] = FILTER_WARP_RND(mid_ptr, x, filter, 8, 7) - PREP_BIAS;
862
2.07M
        }
863
258k
        mid_ptr += 8;
864
258k
        tmp += tmp_stride;
865
258k
    }
866
32.3k
}
867
868
static void emu_edge_c(const intptr_t bw, const intptr_t bh,
869
                       const intptr_t iw, const intptr_t ih,
870
                       const intptr_t x, const intptr_t y,
871
                       pixel *dst, const ptrdiff_t dst_stride,
872
                       const pixel *ref, const ptrdiff_t ref_stride)
873
823k
{
874
    // find offset in reference of visible block to copy
875
823k
    ref += iclip((int) y, 0, (int) ih - 1) * PXSTRIDE(ref_stride) +
876
823k
           iclip((int) x, 0, (int) iw - 1);
877
878
    // number of pixels to extend (left, right, top, bottom)
879
823k
    const int left_ext = iclip((int) -x, 0, (int) bw - 1);
880
823k
    const int right_ext = iclip((int) (x + bw - iw), 0, (int) bw - 1);
881
823k
    assert(left_ext + right_ext < bw);
882
823k
    const int top_ext = iclip((int) -y, 0, (int) bh - 1);
883
823k
    const int bottom_ext = iclip((int) (y + bh - ih), 0, (int) bh - 1);
884
823k
    assert(top_ext + bottom_ext < bh);
885
886
    // copy visible portion first
887
823k
    pixel *blk = dst + top_ext * PXSTRIDE(dst_stride);
888
823k
    const int center_w = (int) (bw - left_ext - right_ext);
889
823k
    const int center_h = (int) (bh - top_ext - bottom_ext);
890
10.8M
    for (int y = 0; y < center_h; y++) {
891
10.0M
        pixel_copy(blk + left_ext, ref, center_w);
892
        // extend left edge for this line
893
10.0M
        if (left_ext)
894
1.89M
            pixel_set(blk, blk[left_ext], left_ext);
895
        // extend right edge for this line
896
10.0M
        if (right_ext)
897
6.54M
            pixel_set(blk + left_ext + center_w, blk[left_ext + center_w - 1],
898
6.54M
                      right_ext);
899
10.0M
        ref += PXSTRIDE(ref_stride);
900
10.0M
        blk += PXSTRIDE(dst_stride);
901
10.0M
    }
902
903
    // copy top
904
823k
    blk = dst + top_ext * PXSTRIDE(dst_stride);
905
2.53M
    for (int y = 0; y < top_ext; y++) {
906
1.70M
        pixel_copy(dst, blk, bw);
907
1.70M
        dst += PXSTRIDE(dst_stride);
908
1.70M
    }
909
910
    // copy bottom
911
823k
    dst += center_h * PXSTRIDE(dst_stride);
912
4.36M
    for (int y = 0; y < bottom_ext; y++) {
913
3.54M
        pixel_copy(dst, &dst[-PXSTRIDE(dst_stride)], bw);
914
3.54M
        dst += PXSTRIDE(dst_stride);
915
3.54M
    }
916
823k
}
917
918
static void resize_c(pixel *dst, const ptrdiff_t dst_stride,
919
                     const pixel *src, const ptrdiff_t src_stride,
920
                     const int dst_w, int h, const int src_w,
921
                     const int dx, const int mx0 HIGHBD_DECL_SUFFIX)
922
68.0k
{
923
1.97M
    do {
924
1.97M
        int mx = mx0, src_x = -1;
925
342M
        for (int x = 0; x < dst_w; x++) {
926
340M
            const int8_t *const F = dav1d_resize_filter[mx >> 8];
927
340M
            dst[x] = iclip_pixel((-(F[0] * src[iclip(src_x - 3, 0, src_w - 1)] +
928
340M
                                    F[1] * src[iclip(src_x - 2, 0, src_w - 1)] +
929
340M
                                    F[2] * src[iclip(src_x - 1, 0, src_w - 1)] +
930
340M
                                    F[3] * src[iclip(src_x + 0, 0, src_w - 1)] +
931
340M
                                    F[4] * src[iclip(src_x + 1, 0, src_w - 1)] +
932
340M
                                    F[5] * src[iclip(src_x + 2, 0, src_w - 1)] +
933
340M
                                    F[6] * src[iclip(src_x + 3, 0, src_w - 1)] +
934
340M
                                    F[7] * src[iclip(src_x + 4, 0, src_w - 1)]) +
935
340M
                                  64) >> 7);
936
340M
            mx += dx;
937
340M
            src_x += mx >> 14;
938
340M
            mx &= 0x3fff;
939
340M
        }
940
941
1.97M
        dst += PXSTRIDE(dst_stride);
942
1.97M
        src += PXSTRIDE(src_stride);
943
1.97M
    } while (--h);
944
68.0k
}
945
946
#if HAVE_ASM
947
#if ARCH_AARCH64 || ARCH_ARM
948
#include "src/arm/mc.h"
949
#elif ARCH_LOONGARCH64
950
#include "src/loongarch/mc.h"
951
#elif ARCH_PPC64LE
952
#include "src/ppc/mc.h"
953
#elif ARCH_RISCV
954
#include "src/riscv/mc.h"
955
#elif ARCH_X86
956
#include "src/x86/mc.h"
957
#endif
958
#endif
959
960
16.2k
COLD void bitfn(dav1d_mc_dsp_init)(Dav1dMCDSPContext *const c) {
961
162k
#define init_mc_fns(type, name) do { \
962
162k
    c->mc        [type] = put_##name##_c; \
963
162k
    c->mc_scaled [type] = put_##name##_scaled_c; \
964
162k
    c->mct       [type] = prep_##name##_c; \
965
162k
    c->mct_scaled[type] = prep_##name##_scaled_c; \
966
162k
} while (0)
967
968
16.2k
    init_mc_fns(FILTER_2D_8TAP_REGULAR,        8tap_regular);
969
16.2k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SMOOTH, 8tap_regular_smooth);
970
16.2k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SHARP,  8tap_regular_sharp);
971
16.2k
    init_mc_fns(FILTER_2D_8TAP_SHARP_REGULAR,  8tap_sharp_regular);
972
16.2k
    init_mc_fns(FILTER_2D_8TAP_SHARP_SMOOTH,   8tap_sharp_smooth);
973
16.2k
    init_mc_fns(FILTER_2D_8TAP_SHARP,          8tap_sharp);
974
16.2k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_REGULAR, 8tap_smooth_regular);
975
16.2k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH,         8tap_smooth);
976
16.2k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_SHARP,   8tap_smooth_sharp);
977
16.2k
    init_mc_fns(FILTER_2D_BILINEAR,            bilin);
978
979
16.2k
    c->avg      = avg_c;
980
16.2k
    c->w_avg    = w_avg_c;
981
16.2k
    c->mask     = mask_c;
982
16.2k
    c->blend    = blend_c;
983
16.2k
    c->blend_v  = blend_v_c;
984
16.2k
    c->blend_h  = blend_h_c;
985
16.2k
    c->w_mask[0] = w_mask_444_c;
986
16.2k
    c->w_mask[1] = w_mask_422_c;
987
16.2k
    c->w_mask[2] = w_mask_420_c;
988
16.2k
    c->warp8x8  = warp_affine_8x8_c;
989
16.2k
    c->warp8x8t = warp_affine_8x8t_c;
990
16.2k
    c->emu_edge = emu_edge_c;
991
16.2k
    c->resize   = resize_c;
992
993
#if HAVE_ASM
994
#if ARCH_AARCH64 || ARCH_ARM
995
    mc_dsp_init_arm(c);
996
#elif ARCH_LOONGARCH64
997
    mc_dsp_init_loongarch(c);
998
#elif ARCH_PPC64LE
999
    mc_dsp_init_ppc(c);
1000
#elif ARCH_RISCV
1001
    mc_dsp_init_riscv(c);
1002
#elif ARCH_X86
1003
    mc_dsp_init_x86(c);
1004
#endif
1005
#endif
1006
16.2k
}
dav1d_mc_dsp_init_8bpc
Line
Count
Source
960
7.80k
COLD void bitfn(dav1d_mc_dsp_init)(Dav1dMCDSPContext *const c) {
961
7.80k
#define init_mc_fns(type, name) do { \
962
7.80k
    c->mc        [type] = put_##name##_c; \
963
7.80k
    c->mc_scaled [type] = put_##name##_scaled_c; \
964
7.80k
    c->mct       [type] = prep_##name##_c; \
965
7.80k
    c->mct_scaled[type] = prep_##name##_scaled_c; \
966
7.80k
} while (0)
967
968
7.80k
    init_mc_fns(FILTER_2D_8TAP_REGULAR,        8tap_regular);
969
7.80k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SMOOTH, 8tap_regular_smooth);
970
7.80k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SHARP,  8tap_regular_sharp);
971
7.80k
    init_mc_fns(FILTER_2D_8TAP_SHARP_REGULAR,  8tap_sharp_regular);
972
7.80k
    init_mc_fns(FILTER_2D_8TAP_SHARP_SMOOTH,   8tap_sharp_smooth);
973
7.80k
    init_mc_fns(FILTER_2D_8TAP_SHARP,          8tap_sharp);
974
7.80k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_REGULAR, 8tap_smooth_regular);
975
7.80k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH,         8tap_smooth);
976
7.80k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_SHARP,   8tap_smooth_sharp);
977
7.80k
    init_mc_fns(FILTER_2D_BILINEAR,            bilin);
978
979
7.80k
    c->avg      = avg_c;
980
7.80k
    c->w_avg    = w_avg_c;
981
7.80k
    c->mask     = mask_c;
982
7.80k
    c->blend    = blend_c;
983
7.80k
    c->blend_v  = blend_v_c;
984
7.80k
    c->blend_h  = blend_h_c;
985
7.80k
    c->w_mask[0] = w_mask_444_c;
986
7.80k
    c->w_mask[1] = w_mask_422_c;
987
7.80k
    c->w_mask[2] = w_mask_420_c;
988
7.80k
    c->warp8x8  = warp_affine_8x8_c;
989
7.80k
    c->warp8x8t = warp_affine_8x8t_c;
990
7.80k
    c->emu_edge = emu_edge_c;
991
7.80k
    c->resize   = resize_c;
992
993
#if HAVE_ASM
994
#if ARCH_AARCH64 || ARCH_ARM
995
    mc_dsp_init_arm(c);
996
#elif ARCH_LOONGARCH64
997
    mc_dsp_init_loongarch(c);
998
#elif ARCH_PPC64LE
999
    mc_dsp_init_ppc(c);
1000
#elif ARCH_RISCV
1001
    mc_dsp_init_riscv(c);
1002
#elif ARCH_X86
1003
    mc_dsp_init_x86(c);
1004
#endif
1005
#endif
1006
7.80k
}
dav1d_mc_dsp_init_16bpc
Line
Count
Source
960
8.43k
COLD void bitfn(dav1d_mc_dsp_init)(Dav1dMCDSPContext *const c) {
961
8.43k
#define init_mc_fns(type, name) do { \
962
8.43k
    c->mc        [type] = put_##name##_c; \
963
8.43k
    c->mc_scaled [type] = put_##name##_scaled_c; \
964
8.43k
    c->mct       [type] = prep_##name##_c; \
965
8.43k
    c->mct_scaled[type] = prep_##name##_scaled_c; \
966
8.43k
} while (0)
967
968
8.43k
    init_mc_fns(FILTER_2D_8TAP_REGULAR,        8tap_regular);
969
8.43k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SMOOTH, 8tap_regular_smooth);
970
8.43k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SHARP,  8tap_regular_sharp);
971
8.43k
    init_mc_fns(FILTER_2D_8TAP_SHARP_REGULAR,  8tap_sharp_regular);
972
8.43k
    init_mc_fns(FILTER_2D_8TAP_SHARP_SMOOTH,   8tap_sharp_smooth);
973
8.43k
    init_mc_fns(FILTER_2D_8TAP_SHARP,          8tap_sharp);
974
8.43k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_REGULAR, 8tap_smooth_regular);
975
8.43k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH,         8tap_smooth);
976
8.43k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_SHARP,   8tap_smooth_sharp);
977
8.43k
    init_mc_fns(FILTER_2D_BILINEAR,            bilin);
978
979
8.43k
    c->avg      = avg_c;
980
8.43k
    c->w_avg    = w_avg_c;
981
8.43k
    c->mask     = mask_c;
982
8.43k
    c->blend    = blend_c;
983
8.43k
    c->blend_v  = blend_v_c;
984
8.43k
    c->blend_h  = blend_h_c;
985
8.43k
    c->w_mask[0] = w_mask_444_c;
986
8.43k
    c->w_mask[1] = w_mask_422_c;
987
8.43k
    c->w_mask[2] = w_mask_420_c;
988
8.43k
    c->warp8x8  = warp_affine_8x8_c;
989
8.43k
    c->warp8x8t = warp_affine_8x8t_c;
990
8.43k
    c->emu_edge = emu_edge_c;
991
8.43k
    c->resize   = resize_c;
992
993
#if HAVE_ASM
994
#if ARCH_AARCH64 || ARCH_ARM
995
    mc_dsp_init_arm(c);
996
#elif ARCH_LOONGARCH64
997
    mc_dsp_init_loongarch(c);
998
#elif ARCH_PPC64LE
999
    mc_dsp_init_ppc(c);
1000
#elif ARCH_RISCV
1001
    mc_dsp_init_riscv(c);
1002
#elif ARCH_X86
1003
    mc_dsp_init_x86(c);
1004
#endif
1005
#endif
1006
8.43k
}