Coverage Report

Created: 2026-08-13 07:23

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
2.50M
#define get_intermediate_bits(bitdepth_max) 4
41
// Output in interval [-5132, 9212], fits in int16_t as is
42
193M
#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
587k
{
55
9.50M
    do {
56
9.50M
        pixel_copy(dst, src, w);
57
58
9.50M
        dst += dst_stride;
59
9.50M
        src += src_stride;
60
9.50M
    } while (--h);
61
587k
}
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
124k
{
67
124k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
68
2.74M
    do {
69
83.8M
        for (int x = 0; x < w; x++)
70
81.0M
            tmp[x] = (src[x] << intermediate_bits) - PREP_BIAS;
71
72
2.74M
        tmp += w;
73
2.74M
        src += src_stride;
74
2.74M
    } while (--h);
75
124k
}
76
77
#define FILTER_8TAP(src, x, F, stride) \
78
335M
    (F[0] * src[x + -3 * stride] + \
79
335M
     F[1] * src[x + -2 * stride] + \
80
335M
     F[2] * src[x + -1 * stride] + \
81
335M
     F[3] * src[x + +0 * stride] + \
82
335M
     F[4] * src[x + +1 * stride] + \
83
335M
     F[5] * src[x + +2 * stride] + \
84
335M
     F[6] * src[x + +3 * stride] + \
85
335M
     F[7] * src[x + +4 * stride])
86
87
#define FILTER_8TAP2(src, x, F) \
88
192M
    (F[0] * src[0][x] + \
89
192M
     F[1] * src[1][x] + \
90
192M
     F[2] * src[2][x] + \
91
192M
     F[3] * src[3][x] + \
92
192M
     F[4] * src[4][x] + \
93
192M
     F[5] * src[5][x] + \
94
192M
     F[6] * src[6][x] + \
95
192M
     F[7] * src[7][x])
96
97
#define DAV1D_FILTER_8TAP_RND(src, x, F, stride, sh) \
98
310M
    ((FILTER_8TAP(src, x, F, stride) + ((1 << (sh)) >> 1)) >> (sh))
99
100
#define DAV1D_FILTER_8TAP_RND2(src, x, F, stride, rnd, sh) \
101
24.2M
    ((FILTER_8TAP(src, x, F, stride) + (rnd)) >> (sh))
102
103
#define DAV1D_FILTER_8TAP_RND3(src, x, F, sh) \
104
192M
    ((FILTER_8TAP2(src, x, F) + ((1 << (sh)) >> 1)) >> (sh))
105
106
#define DAV1D_FILTER_8TAP_CLIP(src, x, F, stride, sh) \
107
46.7M
    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
24.2M
    iclip_pixel(DAV1D_FILTER_8TAP_RND2(src, x, F, stride, rnd, sh))
111
112
#define DAV1D_FILTER_8TAP_CLIP3(src, x, F, sh) \
113
130M
    iclip_pixel(DAV1D_FILTER_8TAP_RND3(src, x, F, sh))
114
115
#define GET_H_FILTER(mx) \
116
210M
    const int8_t *const fh = !(mx) ? NULL : w > 4 ? \
117
193M
        dav1d_mc_subpel_filters[filter_type & 3][(mx) - 1] : \
118
193M
        dav1d_mc_subpel_filters[3 + (filter_type & 1)][(mx) - 1]
119
120
#define GET_V_FILTER(my) \
121
9.03M
    const int8_t *const fv = !(my) ? NULL : h > 4 ? \
122
7.31M
        dav1d_mc_subpel_filters[filter_type >> 2][(my) - 1] : \
123
7.31M
        dav1d_mc_subpel_filters[3 + ((filter_type >> 2) & 1)][(my) - 1]
124
125
#define GET_FILTERS() \
126
734k
    GET_H_FILTER(mx); \
127
734k
    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
546k
{
135
546k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
136
546k
    const int intermediate_rnd = 32 + ((1 << (6 - intermediate_bits)) >> 1);
137
138
546k
    GET_FILTERS();
139
546k
    dst_stride = PXSTRIDE(dst_stride);
140
546k
    src_stride = PXSTRIDE(src_stride);
141
142
546k
    if (fh) {
143
183k
        if (fv) {
144
109k
            int tmp_h = h + 7;
145
109k
            int16_t mid[128 * 135], *mid_ptr = mid;
146
147
109k
            src -= src_stride * 3;
148
1.90M
            do {
149
40.0M
                for (int x = 0; x < w; x++)
150
38.1M
                    mid_ptr[x] = DAV1D_FILTER_8TAP_RND(src, x, fh, 1,
151
1.90M
                                                       6 - intermediate_bits);
152
153
1.90M
                mid_ptr += 128;
154
1.90M
                src += src_stride;
155
1.90M
            } while (--tmp_h);
156
157
109k
            mid_ptr = mid + 128 * 3;
158
1.17M
            do {
159
31.0M
                for (int x = 0; x < w; x++)
160
29.8M
                    dst[x] = DAV1D_FILTER_8TAP_CLIP(mid_ptr, x, fv, 128,
161
1.17M
                                                    6 + intermediate_bits);
162
163
1.17M
                mid_ptr += 128;
164
1.17M
                dst += dst_stride;
165
1.17M
            } while (--h);
166
109k
        } else {
167
773k
            do {
168
24.9M
                for (int x = 0; x < w; x++) {
169
24.2M
                    dst[x] = DAV1D_FILTER_8TAP_CLIP2(src, x, fh, 1,
170
24.2M
                                                     intermediate_rnd, 6);
171
24.2M
                }
172
173
773k
                dst += dst_stride;
174
773k
                src += src_stride;
175
773k
            } while (--h);
176
73.8k
        }
177
363k
    } else if (fv) {
178
694k
        do {
179
17.6M
            for (int x = 0; x < w; x++)
180
16.9M
                dst[x] = DAV1D_FILTER_8TAP_CLIP(src, x, fv, src_stride, 6);
181
182
694k
            dst += dst_stride;
183
694k
            src += src_stride;
184
694k
        } while (--h);
185
78.0k
    } else
186
285k
        put_c(dst, dst_stride, src, src_stride, w, h);
187
546k
}
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
439k
{
196
439k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
197
439k
    const int intermediate_rnd = (1 << intermediate_bits) >> 1;
198
439k
    int16_t mid[128 * 8];
199
439k
    int16_t *mid_ptrs[8];
200
439k
    int in_y = -8;
201
439k
    src_stride = PXSTRIDE(src_stride);
202
203
3.95M
    for (int i = 0; i < 8; i++)
204
3.51M
        mid_ptrs[i] = &mid[128 * i];
205
206
439k
    src -= src_stride * 3;
207
208
6.07M
    for (int y = 0; y < h; y++) {
209
5.63M
        int x;
210
5.63M
        int src_y = my >> 10;
211
5.63M
        GET_V_FILTER((my & 0x3ff) >> 6);
212
213
12.5M
        while (in_y < src_y) {
214
6.91M
            int imx = mx, ioff = 0;
215
6.91M
            int16_t *mid_ptr = mid_ptrs[0];
216
217
55.3M
            for (int i = 0; i < 7; i++)
218
48.4M
                mid_ptrs[i] = mid_ptrs[i + 1];
219
6.91M
            mid_ptrs[7] = mid_ptr;
220
221
150M
            for (x = 0; x < w; x++) {
222
143M
                GET_H_FILTER(imx >> 6);
223
143M
                mid_ptr[x] = fh ? DAV1D_FILTER_8TAP_RND(src, ioff, fh, 1,
224
143M
                                                        6 - intermediate_bits) :
225
143M
                                  src[ioff] << intermediate_bits;
226
143M
                imx += dx;
227
143M
                ioff += imx >> 10;
228
143M
                imx &= 0x3ff;
229
143M
            }
230
231
6.91M
            src += src_stride;
232
6.91M
            in_y++;
233
6.91M
        }
234
235
156M
        for (x = 0; x < w; x++)
236
150M
            dst[x] = fv ? DAV1D_FILTER_8TAP_CLIP3(mid_ptrs, x, fv,
237
150M
                                                  6 + intermediate_bits) :
238
150M
                          iclip_pixel((mid_ptrs[3][x] + intermediate_rnd) >>
239
20.7M
                                              intermediate_bits);
240
241
5.63M
        my += dy;
242
5.63M
        dst += PXSTRIDE(dst_stride);
243
5.63M
    }
244
439k
}
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
187k
{
251
187k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
252
187k
    GET_FILTERS();
253
187k
    src_stride = PXSTRIDE(src_stride);
254
255
187k
    if (fh) {
256
53.5k
        if (fv) {
257
35.2k
            int tmp_h = h + 7;
258
35.2k
            int16_t mid[128 * 135], *mid_ptr = mid;
259
260
35.2k
            src -= src_stride * 3;
261
644k
            do {
262
10.3M
                for (int x = 0; x < w; x++)
263
9.74M
                    mid_ptr[x] = DAV1D_FILTER_8TAP_RND(src, x, fh, 1,
264
644k
                                                       6 - intermediate_bits);
265
266
644k
                mid_ptr += 128;
267
644k
                src += src_stride;
268
644k
            } while (--tmp_h);
269
270
35.2k
            mid_ptr = mid + 128 * 3;
271
398k
            do {
272
7.74M
                for (int x = 0; x < w; x++) {
273
7.34M
                    int t = DAV1D_FILTER_8TAP_RND(mid_ptr, x, fv, 128, 6) -
274
7.34M
                                  PREP_BIAS;
275
7.34M
                    assert(t >= INT16_MIN && t <= INT16_MAX);
276
7.34M
                    tmp[x] = t;
277
7.34M
                }
278
279
398k
                mid_ptr += 128;
280
398k
                tmp += w;
281
398k
            } while (--h);
282
35.2k
        } else {
283
303k
            do {
284
9.53M
                for (int x = 0; x < w; x++)
285
9.23M
                    tmp[x] = DAV1D_FILTER_8TAP_RND(src, x, fh, 1,
286
9.23M
                                                   6 - intermediate_bits) -
287
9.23M
                             PREP_BIAS;
288
289
303k
                tmp += w;
290
303k
                src += src_stride;
291
303k
            } while (--h);
292
18.2k
        }
293
133k
    } else if (fv) {
294
245k
        do {
295
5.68M
            for (int x = 0; x < w; x++)
296
5.44M
                tmp[x] = DAV1D_FILTER_8TAP_RND(src, x, fv, src_stride,
297
5.44M
                                               6 - intermediate_bits) -
298
5.44M
                         PREP_BIAS;
299
300
245k
            tmp += w;
301
245k
            src += src_stride;
302
245k
        } while (--h);
303
14.9k
    } else
304
118k
        prep_c(tmp, src, src_stride, w, h HIGHBD_TAIL_SUFFIX);
305
187k
}
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
142k
{
313
142k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
314
142k
    int16_t mid[128 * 8];
315
142k
    int16_t *mid_ptrs[8];
316
142k
    int in_y = -8;
317
142k
    src_stride = PXSTRIDE(src_stride);
318
319
1.28M
    for (int i = 0; i < 8; i++)
320
1.13M
        mid_ptrs[i] = &mid[128 * i];
321
322
142k
    src -= src_stride * 3;
323
324
2.80M
    for (int y = 0; y < h; y++) {
325
2.66M
        int x;
326
2.66M
        int src_y = my >> 10;
327
2.66M
        GET_V_FILTER((my & 0x3ff) >> 6);
328
329
5.24M
        while (in_y < src_y) {
330
2.57M
            int imx = mx, ioff = 0;
331
2.57M
            int16_t *mid_ptr = mid_ptrs[0];
332
333
20.6M
            for (int i = 0; i < 7; i++)
334
18.0M
                mid_ptrs[i] = mid_ptrs[i + 1];
335
2.57M
            mid_ptrs[7] = mid_ptr;
336
337
68.9M
            for (x = 0; x < w; x++) {
338
66.3M
                GET_H_FILTER(imx >> 6);
339
66.3M
                mid_ptr[x] = fh ? DAV1D_FILTER_8TAP_RND(src, ioff, fh, 1,
340
66.3M
                                                        6 - intermediate_bits) :
341
66.3M
                                  src[ioff] << intermediate_bits;
342
66.3M
                imx += dx;
343
66.3M
                ioff += imx >> 10;
344
66.3M
                imx &= 0x3ff;
345
66.3M
            }
346
347
2.57M
            src += src_stride;
348
2.57M
            in_y++;
349
2.57M
        }
350
351
81.3M
        for (x = 0; x < w; x++)
352
78.6M
            tmp[x] = (fv ? DAV1D_FILTER_8TAP_RND3(mid_ptrs, x, fv, 6)
353
78.6M
                         : mid_ptrs[3][x]) - PREP_BIAS;
354
355
2.66M
        my += dy;
356
2.66M
        tmp += w;
357
2.66M
    }
358
142k
}
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
546k
                                HIGHBD_DECL_SUFFIX) \
368
546k
{ \
369
546k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
546k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
546k
} \
mc_tmpl.c:put_8tap_regular_c
Line
Count
Source
367
328k
                                HIGHBD_DECL_SUFFIX) \
368
328k
{ \
369
328k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
328k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
328k
} \
mc_tmpl.c:put_8tap_regular_smooth_c
Line
Count
Source
367
12.9k
                                HIGHBD_DECL_SUFFIX) \
368
12.9k
{ \
369
12.9k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
12.9k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
12.9k
} \
mc_tmpl.c:put_8tap_regular_sharp_c
Line
Count
Source
367
2.73k
                                HIGHBD_DECL_SUFFIX) \
368
2.73k
{ \
369
2.73k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
2.73k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
2.73k
} \
mc_tmpl.c:put_8tap_sharp_regular_c
Line
Count
Source
367
1.69k
                                HIGHBD_DECL_SUFFIX) \
368
1.69k
{ \
369
1.69k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
1.69k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
1.69k
} \
mc_tmpl.c:put_8tap_sharp_smooth_c
Line
Count
Source
367
954
                                HIGHBD_DECL_SUFFIX) \
368
954
{ \
369
954
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
954
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
954
} \
mc_tmpl.c:put_8tap_sharp_c
Line
Count
Source
367
29.6k
                                HIGHBD_DECL_SUFFIX) \
368
29.6k
{ \
369
29.6k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
29.6k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
29.6k
} \
mc_tmpl.c:put_8tap_smooth_regular_c
Line
Count
Source
367
9.99k
                                HIGHBD_DECL_SUFFIX) \
368
9.99k
{ \
369
9.99k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
9.99k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
9.99k
} \
mc_tmpl.c:put_8tap_smooth_c
Line
Count
Source
367
159k
                                HIGHBD_DECL_SUFFIX) \
368
159k
{ \
369
159k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
159k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
159k
} \
mc_tmpl.c:put_8tap_smooth_sharp_c
Line
Count
Source
367
1.19k
                                HIGHBD_DECL_SUFFIX) \
368
1.19k
{ \
369
1.19k
    put_8tap_c(dst, dst_stride, src, src_stride, w, h, mx, my, \
370
1.19k
               type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
371
1.19k
} \
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
439k
                                       HIGHBD_DECL_SUFFIX) \
380
439k
{ \
381
439k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
439k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
439k
} \
mc_tmpl.c:put_8tap_regular_scaled_c
Line
Count
Source
379
304k
                                       HIGHBD_DECL_SUFFIX) \
380
304k
{ \
381
304k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
304k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
304k
} \
mc_tmpl.c:put_8tap_regular_smooth_scaled_c
Line
Count
Source
379
16.8k
                                       HIGHBD_DECL_SUFFIX) \
380
16.8k
{ \
381
16.8k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
16.8k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
16.8k
} \
mc_tmpl.c:put_8tap_regular_sharp_scaled_c
Line
Count
Source
379
2.77k
                                       HIGHBD_DECL_SUFFIX) \
380
2.77k
{ \
381
2.77k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
2.77k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
2.77k
} \
mc_tmpl.c:put_8tap_sharp_regular_scaled_c
Line
Count
Source
379
7.63k
                                       HIGHBD_DECL_SUFFIX) \
380
7.63k
{ \
381
7.63k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
7.63k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
7.63k
} \
mc_tmpl.c:put_8tap_sharp_smooth_scaled_c
Line
Count
Source
379
1.90k
                                       HIGHBD_DECL_SUFFIX) \
380
1.90k
{ \
381
1.90k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
1.90k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
1.90k
} \
mc_tmpl.c:put_8tap_sharp_scaled_c
Line
Count
Source
379
35.5k
                                       HIGHBD_DECL_SUFFIX) \
380
35.5k
{ \
381
35.5k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
35.5k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
35.5k
} \
mc_tmpl.c:put_8tap_smooth_regular_scaled_c
Line
Count
Source
379
21.8k
                                       HIGHBD_DECL_SUFFIX) \
380
21.8k
{ \
381
21.8k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
21.8k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
21.8k
} \
mc_tmpl.c:put_8tap_smooth_scaled_c
Line
Count
Source
379
47.3k
                                       HIGHBD_DECL_SUFFIX) \
380
47.3k
{ \
381
47.3k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
47.3k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
47.3k
} \
mc_tmpl.c:put_8tap_smooth_sharp_scaled_c
Line
Count
Source
379
1.39k
                                       HIGHBD_DECL_SUFFIX) \
380
1.39k
{ \
381
1.39k
    put_8tap_scaled_c(dst, dst_stride, src, src_stride, w, h, mx, my, dx, dy, \
382
1.39k
                      type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
383
1.39k
} \
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
187k
                                 HIGHBD_DECL_SUFFIX) \
390
187k
{ \
391
187k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
187k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
187k
} \
mc_tmpl.c:prep_8tap_regular_c
Line
Count
Source
389
67.0k
                                 HIGHBD_DECL_SUFFIX) \
390
67.0k
{ \
391
67.0k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
67.0k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
67.0k
} \
mc_tmpl.c:prep_8tap_regular_smooth_c
Line
Count
Source
389
2.68k
                                 HIGHBD_DECL_SUFFIX) \
390
2.68k
{ \
391
2.68k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
2.68k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
2.68k
} \
mc_tmpl.c:prep_8tap_regular_sharp_c
Line
Count
Source
389
5.76k
                                 HIGHBD_DECL_SUFFIX) \
390
5.76k
{ \
391
5.76k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
5.76k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
5.76k
} \
mc_tmpl.c:prep_8tap_sharp_regular_c
Line
Count
Source
389
6.94k
                                 HIGHBD_DECL_SUFFIX) \
390
6.94k
{ \
391
6.94k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
6.94k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
6.94k
} \
mc_tmpl.c:prep_8tap_sharp_smooth_c
Line
Count
Source
389
2.27k
                                 HIGHBD_DECL_SUFFIX) \
390
2.27k
{ \
391
2.27k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
2.27k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
2.27k
} \
mc_tmpl.c:prep_8tap_sharp_c
Line
Count
Source
389
22.7k
                                 HIGHBD_DECL_SUFFIX) \
390
22.7k
{ \
391
22.7k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
22.7k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
22.7k
} \
mc_tmpl.c:prep_8tap_smooth_regular_c
Line
Count
Source
389
2.63k
                                 HIGHBD_DECL_SUFFIX) \
390
2.63k
{ \
391
2.63k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
2.63k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
2.63k
} \
mc_tmpl.c:prep_8tap_smooth_c
Line
Count
Source
389
75.1k
                                 HIGHBD_DECL_SUFFIX) \
390
75.1k
{ \
391
75.1k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
75.1k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
75.1k
} \
mc_tmpl.c:prep_8tap_smooth_sharp_c
Line
Count
Source
389
2.25k
                                 HIGHBD_DECL_SUFFIX) \
390
2.25k
{ \
391
2.25k
    prep_8tap_c(tmp, src, src_stride, w, h, mx, my, \
392
2.25k
                type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
393
2.25k
} \
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
142k
                                        HIGHBD_DECL_SUFFIX) \
401
142k
{ \
402
142k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
142k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
142k
}
mc_tmpl.c:prep_8tap_regular_scaled_c
Line
Count
Source
400
52.3k
                                        HIGHBD_DECL_SUFFIX) \
401
52.3k
{ \
402
52.3k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
52.3k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
52.3k
}
mc_tmpl.c:prep_8tap_regular_smooth_scaled_c
Line
Count
Source
400
5.61k
                                        HIGHBD_DECL_SUFFIX) \
401
5.61k
{ \
402
5.61k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
5.61k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
5.61k
}
mc_tmpl.c:prep_8tap_regular_sharp_scaled_c
Line
Count
Source
400
8.63k
                                        HIGHBD_DECL_SUFFIX) \
401
8.63k
{ \
402
8.63k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
8.63k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
8.63k
}
mc_tmpl.c:prep_8tap_sharp_regular_scaled_c
Line
Count
Source
400
15.2k
                                        HIGHBD_DECL_SUFFIX) \
401
15.2k
{ \
402
15.2k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
15.2k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
15.2k
}
mc_tmpl.c:prep_8tap_sharp_smooth_scaled_c
Line
Count
Source
400
3.75k
                                        HIGHBD_DECL_SUFFIX) \
401
3.75k
{ \
402
3.75k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
3.75k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
3.75k
}
mc_tmpl.c:prep_8tap_sharp_scaled_c
Line
Count
Source
400
8.89k
                                        HIGHBD_DECL_SUFFIX) \
401
8.89k
{ \
402
8.89k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
8.89k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
8.89k
}
mc_tmpl.c:prep_8tap_smooth_regular_scaled_c
Line
Count
Source
400
11.7k
                                        HIGHBD_DECL_SUFFIX) \
401
11.7k
{ \
402
11.7k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
11.7k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
11.7k
}
mc_tmpl.c:prep_8tap_smooth_scaled_c
Line
Count
Source
400
33.3k
                                        HIGHBD_DECL_SUFFIX) \
401
33.3k
{ \
402
33.3k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
33.3k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
33.3k
}
mc_tmpl.c:prep_8tap_smooth_sharp_scaled_c
Line
Count
Source
400
2.90k
                                        HIGHBD_DECL_SUFFIX) \
401
2.90k
{ \
402
2.90k
    prep_8tap_scaled_c(tmp, src, src_stride, w, h, mx, my, dx, dy, \
403
2.90k
                       type_h | (type_v << 2) HIGHBD_TAIL_SUFFIX); \
404
2.90k
}
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
56.1M
    (16 * src[x] + ((mxy) * (src[x + stride] - src[x])))
418
419
#define FILTER_BILIN_RND(src, x, mxy, stride, sh) \
420
56.1M
    ((FILTER_BILIN(src, x, mxy, stride) + ((1 << (sh)) >> 1)) >> (sh))
421
422
#define FILTER_BILIN_CLIP(src, x, mxy, stride, sh) \
423
11.4M
    iclip_pixel(FILTER_BILIN_RND(src, x, mxy, stride, sh))
424
425
#define FILTER_BILIN2(src1, src2, x, mxy) \
426
30.4M
    (16 * src1[x] + ((mxy) * (src2[x] - src1[x])))
427
428
#define FILTER_BILIN_RND2(src1, src2, x, mxy, sh) \
429
30.4M
    ((FILTER_BILIN2(src1, src2, x, mxy) + ((1 << (sh)) >> 1)) >> (sh))
430
431
#define FILTER_BILIN_CLIP2(src1, src2, x, mxy, sh) \
432
25.4M
    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
415k
{
439
415k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
440
415k
    const int intermediate_rnd = (1 << intermediate_bits) >> 1;
441
415k
    dst_stride = PXSTRIDE(dst_stride);
442
415k
    src_stride = PXSTRIDE(src_stride);
443
444
415k
    if (mx) {
445
79.4k
        if (my) {
446
39.4k
            int16_t mid[128 * 129], *mid_ptr = mid;
447
39.4k
            int tmp_h = h + 1;
448
449
347k
            do {
450
5.30M
                for (int x = 0; x < w; x++)
451
4.95M
                    mid_ptr[x] = FILTER_BILIN_RND(src, x, mx, 1,
452
347k
                                                  4 - intermediate_bits);
453
454
347k
                mid_ptr += 128;
455
347k
                src += src_stride;
456
347k
            } while (--tmp_h);
457
458
39.4k
            mid_ptr = mid;
459
308k
            do {
460
4.95M
                for (int x = 0; x < w; x++)
461
4.64M
                    dst[x] = FILTER_BILIN_CLIP(mid_ptr, x, my, 128,
462
308k
                                               4 + intermediate_bits);
463
464
308k
                mid_ptr += 128;
465
308k
                dst += dst_stride;
466
308k
            } while (--h);
467
40.0k
        } else {
468
432k
            do {
469
11.4M
                for (int x = 0; x < w; x++) {
470
11.0M
                    const int px = FILTER_BILIN_RND(src, x, mx, 1,
471
11.0M
                                                    4 - intermediate_bits);
472
11.0M
                    dst[x] = iclip_pixel((px + intermediate_rnd) >> intermediate_bits);
473
11.0M
                }
474
475
432k
                dst += dst_stride;
476
432k
                src += src_stride;
477
432k
            } while (--h);
478
40.0k
        }
479
336k
    } else if (my) {
480
314k
        do {
481
7.15M
            for (int x = 0; x < w; x++)
482
6.84M
                dst[x] = FILTER_BILIN_CLIP(src, x, my, src_stride, 4);
483
484
314k
            dst += dst_stride;
485
314k
            src += src_stride;
486
314k
        } while (--h);
487
33.8k
    } else
488
302k
        put_c(dst, dst_stride, src, src_stride, w, h);
489
415k
}
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
47.0k
{
497
47.0k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
498
47.0k
    int16_t mid[128 * 2];
499
47.0k
    int in_y = -2;
500
501
833k
    do {
502
833k
        int x;
503
833k
        int y = my >> 10;
504
833k
        int16_t *mid1 = &mid[(y & 1) * 128];
505
833k
        int16_t *mid2 = &mid[((y + 1) & 1) * 128];
506
833k
        int dmy = my & 0x3ff;
507
508
1.43M
        while (in_y < y) {
509
606k
            int imx = mx, ioff = 0;
510
606k
            int16_t *mid_ptr = &mid[(in_y & 1) * 128];
511
512
21.5M
            for (x = 0; x < w; x++) {
513
20.9M
                mid_ptr[x] = FILTER_BILIN_RND(src, ioff, imx >> 6, 1,
514
20.9M
                                              4 - intermediate_bits);
515
20.9M
                imx += dx;
516
20.9M
                ioff += imx >> 10;
517
20.9M
                imx &= 0x3ff;
518
20.9M
            }
519
520
606k
            src += PXSTRIDE(src_stride);
521
606k
            in_y++;
522
606k
        }
523
524
26.3M
        for (x = 0; x < w; x++)
525
25.4M
            dst[x] = FILTER_BILIN_CLIP2(mid1, mid2, x, dmy >> 6,
526
833k
                                       4 + intermediate_bits);
527
528
833k
        my += dy;
529
833k
        dst += PXSTRIDE(dst_stride);
530
833k
    } while (--h);
531
47.0k
}
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
18.5k
{
538
18.5k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
539
18.5k
    src_stride = PXSTRIDE(src_stride);
540
541
18.5k
    if (mx) {
542
10.2k
        if (my) {
543
6.94k
            int16_t mid[128 * 129], *mid_ptr = mid;
544
6.94k
            int tmp_h = h + 1;
545
546
104k
            do {
547
1.59M
                for (int x = 0; x < w; x++)
548
1.49M
                    mid_ptr[x] = FILTER_BILIN_RND(src, x, mx, 1,
549
104k
                                                  4 - intermediate_bits);
550
551
104k
                mid_ptr += 128;
552
104k
                src += src_stride;
553
104k
            } while (--tmp_h);
554
555
6.94k
            mid_ptr = mid;
556
99.1k
            do {
557
1.54M
                for (int x = 0; x < w; x++)
558
1.44M
                    tmp[x] = FILTER_BILIN_RND(mid_ptr, x, my, 128, 4) -
559
1.44M
                             PREP_BIAS;
560
561
99.1k
                mid_ptr += 128;
562
99.1k
                tmp += w;
563
99.1k
            } while (--h);
564
6.94k
        } else {
565
47.4k
            do {
566
1.01M
                for (int x = 0; x < w; x++)
567
965k
                    tmp[x] = FILTER_BILIN_RND(src, x, mx, 1,
568
965k
                                              4 - intermediate_bits) -
569
965k
                             PREP_BIAS;
570
571
47.4k
                tmp += w;
572
47.4k
                src += src_stride;
573
47.4k
            } while (--h);
574
3.25k
        }
575
10.2k
    } else if (my) {
576
38.2k
        do {
577
669k
            for (int x = 0; x < w; x++)
578
630k
                tmp[x] = FILTER_BILIN_RND(src, x, my, src_stride,
579
630k
                                          4 - intermediate_bits) - PREP_BIAS;
580
581
38.2k
            tmp += w;
582
38.2k
            src += src_stride;
583
38.2k
        } while (--h);
584
2.48k
    } else
585
5.87k
        prep_c(tmp, src, src_stride, w, h HIGHBD_TAIL_SUFFIX);
586
18.5k
}
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
6.46k
{
593
6.46k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
594
6.46k
    int16_t mid[128 * 2];
595
6.46k
    int in_y = -2;
596
597
149k
    do {
598
149k
        int x;
599
149k
        int y = my >> 10;
600
149k
        int16_t *mid1 = &mid[(y & 1) * 128];
601
149k
        int16_t *mid2 = &mid[((y + 1) & 1) * 128];
602
149k
        int dmy = my & 0x3ff;
603
604
226k
        while (in_y < y) {
605
76.8k
            int imx = mx, ioff = 0;
606
76.8k
            int16_t *mid_ptr = &mid[(in_y & 1) * 128];
607
608
3.25M
            for (x = 0; x < w; x++) {
609
3.17M
                mid_ptr[x] = FILTER_BILIN_RND(src, ioff, imx >> 6, 1,
610
3.17M
                                              4 - intermediate_bits);
611
3.17M
                imx += dx;
612
3.17M
                ioff += imx >> 10;
613
3.17M
                imx &= 0x3ff;
614
3.17M
            }
615
616
76.8k
            src += PXSTRIDE(src_stride);
617
76.8k
            in_y++;
618
76.8k
        }
619
620
5.17M
        for (x = 0; x < w; x++)
621
5.02M
            tmp[x] = FILTER_BILIN_RND2(mid1, mid2, x, dmy >> 6, 4) - PREP_BIAS;
622
623
149k
        my += dy;
624
149k
        tmp += w;
625
149k
    } while (--h);
626
6.46k
}
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
120k
{
632
120k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
633
120k
    const int sh = intermediate_bits + 1;
634
120k
    const int rnd = (1 << intermediate_bits) + PREP_BIAS * 2;
635
2.33M
    do {
636
66.7M
        for (int x = 0; x < w; x++)
637
64.4M
            dst[x] = iclip_pixel((tmp1[x] + tmp2[x] + rnd) >> sh);
638
639
2.33M
        tmp1 += w;
640
2.33M
        tmp2 += w;
641
2.33M
        dst += PXSTRIDE(dst_stride);
642
2.33M
    } while (--h);
643
120k
}
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
29.6k
{
649
29.6k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
650
29.6k
    const int sh = intermediate_bits + 4;
651
29.6k
    const int rnd = (8 << intermediate_bits) + PREP_BIAS * 16;
652
419k
    do {
653
11.5M
        for (int x = 0; x < w; x++)
654
11.0M
            dst[x] = iclip_pixel((tmp1[x] * weight +
655
11.0M
                                  tmp2[x] * (16 - weight) + rnd) >> sh);
656
657
419k
        tmp1 += w;
658
419k
        tmp2 += w;
659
419k
        dst += PXSTRIDE(dst_stride);
660
419k
    } while (--h);
661
29.6k
}
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
25.1k
{
667
25.1k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
668
25.1k
    const int sh = intermediate_bits + 6;
669
25.1k
    const int rnd = (32 << intermediate_bits) + PREP_BIAS * 64;
670
399k
    do {
671
10.0M
        for (int x = 0; x < w; x++)
672
9.62M
            dst[x] = iclip_pixel((tmp1[x] * mask[x] +
673
9.62M
                                  tmp2[x] * (64 - mask[x]) + rnd) >> sh);
674
675
399k
        tmp1 += w;
676
399k
        tmp2 += w;
677
399k
        mask += w;
678
399k
        dst += PXSTRIDE(dst_stride);
679
399k
    } while (--h);
680
25.1k
}
681
682
16.8M
#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
32.8k
{
686
311k
    do {
687
3.78M
        for (int x = 0; x < w; x++) {
688
3.46M
            dst[x] = blend_px(dst[x], tmp[x], mask[x]);
689
3.46M
        }
690
311k
        dst += PXSTRIDE(dst_stride);
691
311k
        tmp += w;
692
311k
        mask += w;
693
311k
    } while (--h);
694
32.8k
}
695
696
static void blend_v_c(pixel *dst, const ptrdiff_t dst_stride, const pixel *tmp,
697
                      const int w, int h)
698
99.7k
{
699
99.7k
    const uint8_t *const mask = &dav1d_obmc_masks[w];
700
1.23M
    do {
701
8.61M
        for (int x = 0; x < (w * 3) >> 2; x++) {
702
7.38M
            dst[x] = blend_px(dst[x], tmp[x], mask[x]);
703
7.38M
        }
704
1.23M
        dst += PXSTRIDE(dst_stride);
705
1.23M
        tmp += w;
706
1.23M
    } while (--h);
707
99.7k
}
708
709
static void blend_h_c(pixel *dst, const ptrdiff_t dst_stride, const pixel *tmp,
710
                      const int w, int h)
711
87.9k
{
712
87.9k
    const uint8_t *mask = &dav1d_obmc_masks[h];
713
87.9k
    h = (h * 3) >> 2;
714
445k
    do {
715
445k
        const int m = *mask++;
716
6.44M
        for (int x = 0; x < w; x++) {
717
6.00M
            dst[x] = blend_px(dst[x], tmp[x], m);
718
6.00M
        }
719
445k
        dst += PXSTRIDE(dst_stride);
720
445k
        tmp += w;
721
445k
    } while (--h);
722
87.9k
}
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
7.74k
{
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
7.74k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
732
7.74k
    const int bitdepth = bitdepth_from_max(bitdepth_max);
733
7.74k
    const int sh = intermediate_bits + 6;
734
7.74k
    const int rnd = (32 << intermediate_bits) + PREP_BIAS * 64;
735
7.74k
    const int mask_sh = bitdepth + intermediate_bits - 4;
736
7.74k
    const int mask_rnd = 1 << (mask_sh - 5);
737
283k
    do {
738
7.91M
        for (int x = 0; x < w; x++) {
739
7.63M
            const int tmpdiff = tmp1[x] - tmp2[x];
740
7.63M
            const int m = imin(38 + ((abs(tmpdiff) + mask_rnd) >> mask_sh), 64);
741
7.63M
            dst[x] = iclip_pixel((tmpdiff * m + tmp2[x] * 64 + rnd) >> sh);
742
743
7.63M
            if (ss_hor) {
744
3.76M
                x++;
745
746
3.76M
                const int tmpdiff = tmp1[x] - tmp2[x];
747
3.76M
                const int n = imin(38 + ((abs(tmpdiff) + mask_rnd) >> mask_sh), 64);
748
3.76M
                dst[x] = iclip_pixel((tmpdiff * n + tmp2[x] * 64 + rnd) >> sh);
749
750
3.76M
                if (h & ss_ver) {
751
1.84M
                    mask[x >> 1] = (m + n + mask[x >> 1] + 2 - sign) >> 2;
752
1.91M
                } else if (ss_ver) {
753
1.84M
                    mask[x >> 1] = m + n;
754
1.84M
                } else {
755
73.1k
                    mask[x >> 1] = (m + n + 1 - sign) >> 1;
756
73.1k
                }
757
3.86M
            } else {
758
3.86M
                mask[x] = m;
759
3.86M
            }
760
7.63M
        }
761
762
283k
        tmp1 += w;
763
283k
        tmp2 += w;
764
283k
        dst += PXSTRIDE(dst_stride);
765
283k
        if (!ss_ver || (h & 1)) mask += w >> ss_hor;
766
283k
    } while (--h);
767
7.74k
}
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
7.74k
                             const int sign HIGHBD_DECL_SUFFIX) \
774
7.74k
{ \
775
7.74k
    w_mask_c(dst, dst_stride, tmp1, tmp2, w, h, mask, sign, ss_hor, ss_ver \
776
7.74k
             HIGHBD_TAIL_SUFFIX); \
777
7.74k
}
mc_tmpl.c:w_mask_444_c
Line
Count
Source
773
2.16k
                             const int sign HIGHBD_DECL_SUFFIX) \
774
2.16k
{ \
775
2.16k
    w_mask_c(dst, dst_stride, tmp1, tmp2, w, h, mask, sign, ss_hor, ss_ver \
776
2.16k
             HIGHBD_TAIL_SUFFIX); \
777
2.16k
}
mc_tmpl.c:w_mask_422_c
Line
Count
Source
773
274
                             const int sign HIGHBD_DECL_SUFFIX) \
774
274
{ \
775
274
    w_mask_c(dst, dst_stride, tmp1, tmp2, w, h, mask, sign, ss_hor, ss_ver \
776
274
             HIGHBD_TAIL_SUFFIX); \
777
274
}
mc_tmpl.c:w_mask_420_c
Line
Count
Source
773
5.31k
                             const int sign HIGHBD_DECL_SUFFIX) \
774
5.31k
{ \
775
5.31k
    w_mask_c(dst, dst_stride, tmp1, tmp2, w, h, mask, sign, ss_hor, ss_ver \
776
5.31k
             HIGHBD_TAIL_SUFFIX); \
777
5.31k
}
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
65.6M
    ((F[0] * src[x - 3 * stride] + \
787
65.6M
      F[1] * src[x - 2 * stride] + \
788
65.6M
      F[2] * src[x - 1 * stride] + \
789
65.6M
      F[3] * src[x + 0 * stride] + \
790
65.6M
      F[4] * src[x + 1 * stride] + \
791
65.6M
      F[5] * src[x + 2 * stride] + \
792
65.6M
      F[6] * src[x + 3 * stride] + \
793
65.6M
      F[7] * src[x + 4 * stride] + \
794
65.6M
      ((1 << (sh)) >> 1)) >> (sh))
795
796
#define FILTER_WARP_CLIP(src, x, F, stride, sh) \
797
18.9M
    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
337k
{
804
337k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
805
337k
    int16_t mid[15 * 8], *mid_ptr = mid;
806
807
337k
    src -= 3 * PXSTRIDE(src_stride);
808
5.17M
    for (int y = 0; y < 15; y++, mx += abcd[1]) {
809
41.0M
        for (int x = 0, tmx = mx; x < 8; x++, tmx += abcd[0]) {
810
36.2M
            const int8_t *const filter =
811
36.2M
                dav1d_mc_warp_filter[64 + ((tmx + 512) >> 10)];
812
813
36.2M
            mid_ptr[x] = FILTER_WARP_RND(src, x, filter, 1,
814
36.2M
                                         7 - intermediate_bits);
815
36.2M
        }
816
4.84M
        src += PXSTRIDE(src_stride);
817
4.84M
        mid_ptr += 8;
818
4.84M
    }
819
820
337k
    mid_ptr = &mid[3 * 8];
821
2.95M
    for (int y = 0; y < 8; y++, my += abcd[3]) {
822
21.5M
        for (int x = 0, tmy = my; x < 8; x++, tmy += abcd[2]) {
823
18.9M
            const int8_t *const filter =
824
18.9M
                dav1d_mc_warp_filter[64 + ((tmy + 512) >> 10)];
825
826
18.9M
            dst[x] = FILTER_WARP_CLIP(mid_ptr, x, filter, 8,
827
18.9M
                                      7 + intermediate_bits);
828
18.9M
        }
829
2.61M
        mid_ptr += 8;
830
2.61M
        dst += PXSTRIDE(dst_stride);
831
2.61M
    }
832
337k
}
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
57.1k
{
839
57.1k
    const int intermediate_bits = get_intermediate_bits(bitdepth_max);
840
57.1k
    int16_t mid[15 * 8], *mid_ptr = mid;
841
842
57.1k
    src -= 3 * PXSTRIDE(src_stride);
843
913k
    for (int y = 0; y < 15; y++, mx += abcd[1]) {
844
7.70M
        for (int x = 0, tmx = mx; x < 8; x++, tmx += abcd[0]) {
845
6.84M
            const int8_t *const filter =
846
6.84M
                dav1d_mc_warp_filter[64 + ((tmx + 512) >> 10)];
847
848
6.84M
            mid_ptr[x] = FILTER_WARP_RND(src, x, filter, 1,
849
6.84M
                                         7 - intermediate_bits);
850
6.84M
        }
851
856k
        src += PXSTRIDE(src_stride);
852
856k
        mid_ptr += 8;
853
856k
    }
854
855
57.1k
    mid_ptr = &mid[3 * 8];
856
513k
    for (int y = 0; y < 8; y++, my += abcd[3]) {
857
4.10M
        for (int x = 0, tmy = my; x < 8; x++, tmy += abcd[2]) {
858
3.65M
            const int8_t *const filter =
859
3.65M
                dav1d_mc_warp_filter[64 + ((tmy + 512) >> 10)];
860
861
3.65M
            tmp[x] = FILTER_WARP_RND(mid_ptr, x, filter, 8, 7) - PREP_BIAS;
862
3.65M
        }
863
456k
        mid_ptr += 8;
864
456k
        tmp += tmp_stride;
865
456k
    }
866
57.1k
}
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
1.47M
{
874
    // find offset in reference of visible block to copy
875
1.47M
    ref += iclip((int) y, 0, (int) ih - 1) * PXSTRIDE(ref_stride) +
876
1.47M
           iclip((int) x, 0, (int) iw - 1);
877
878
    // number of pixels to extend (left, right, top, bottom)
879
1.47M
    const int left_ext = iclip((int) -x, 0, (int) bw - 1);
880
1.47M
    const int right_ext = iclip((int) (x + bw - iw), 0, (int) bw - 1);
881
1.47M
    assert(left_ext + right_ext < bw);
882
1.47M
    const int top_ext = iclip((int) -y, 0, (int) bh - 1);
883
1.47M
    const int bottom_ext = iclip((int) (y + bh - ih), 0, (int) bh - 1);
884
1.47M
    assert(top_ext + bottom_ext < bh);
885
886
    // copy visible portion first
887
1.47M
    pixel *blk = dst + top_ext * PXSTRIDE(dst_stride);
888
1.47M
    const int center_w = (int) (bw - left_ext - right_ext);
889
1.47M
    const int center_h = (int) (bh - top_ext - bottom_ext);
890
18.9M
    for (int y = 0; y < center_h; y++) {
891
17.4M
        pixel_copy(blk + left_ext, ref, center_w);
892
        // extend left edge for this line
893
17.4M
        if (left_ext)
894
4.42M
            pixel_set(blk, blk[left_ext], left_ext);
895
        // extend right edge for this line
896
17.4M
        if (right_ext)
897
12.9M
            pixel_set(blk + left_ext + center_w, blk[left_ext + center_w - 1],
898
12.9M
                      right_ext);
899
17.4M
        ref += PXSTRIDE(ref_stride);
900
17.4M
        blk += PXSTRIDE(dst_stride);
901
17.4M
    }
902
903
    // copy top
904
1.47M
    blk = dst + top_ext * PXSTRIDE(dst_stride);
905
3.46M
    for (int y = 0; y < top_ext; y++) {
906
1.99M
        pixel_copy(dst, blk, bw);
907
1.99M
        dst += PXSTRIDE(dst_stride);
908
1.99M
    }
909
910
    // copy bottom
911
1.47M
    dst += center_h * PXSTRIDE(dst_stride);
912
8.07M
    for (int y = 0; y < bottom_ext; y++) {
913
6.59M
        pixel_copy(dst, &dst[-PXSTRIDE(dst_stride)], bw);
914
6.59M
        dst += PXSTRIDE(dst_stride);
915
6.59M
    }
916
1.47M
}
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
168k
{
923
6.13M
    do {
924
6.13M
        int mx = mx0, src_x = -1;
925
481M
        for (int x = 0; x < dst_w; x++) {
926
475M
            const int8_t *const F = dav1d_resize_filter[mx >> 8];
927
475M
            dst[x] = iclip_pixel((-(F[0] * src[iclip(src_x - 3, 0, src_w - 1)] +
928
475M
                                    F[1] * src[iclip(src_x - 2, 0, src_w - 1)] +
929
475M
                                    F[2] * src[iclip(src_x - 1, 0, src_w - 1)] +
930
475M
                                    F[3] * src[iclip(src_x + 0, 0, src_w - 1)] +
931
475M
                                    F[4] * src[iclip(src_x + 1, 0, src_w - 1)] +
932
475M
                                    F[5] * src[iclip(src_x + 2, 0, src_w - 1)] +
933
475M
                                    F[6] * src[iclip(src_x + 3, 0, src_w - 1)] +
934
475M
                                    F[7] * src[iclip(src_x + 4, 0, src_w - 1)]) +
935
475M
                                  64) >> 7);
936
475M
            mx += dx;
937
475M
            src_x += mx >> 14;
938
475M
            mx &= 0x3fff;
939
475M
        }
940
941
6.13M
        dst += PXSTRIDE(dst_stride);
942
6.13M
        src += PXSTRIDE(src_stride);
943
6.13M
    } while (--h);
944
168k
}
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
55.8k
COLD void bitfn(dav1d_mc_dsp_init)(Dav1dMCDSPContext *const c) {
961
558k
#define init_mc_fns(type, name) do { \
962
558k
    c->mc        [type] = put_##name##_c; \
963
558k
    c->mc_scaled [type] = put_##name##_scaled_c; \
964
558k
    c->mct       [type] = prep_##name##_c; \
965
558k
    c->mct_scaled[type] = prep_##name##_scaled_c; \
966
558k
} while (0)
967
968
55.8k
    init_mc_fns(FILTER_2D_8TAP_REGULAR,        8tap_regular);
969
55.8k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SMOOTH, 8tap_regular_smooth);
970
55.8k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SHARP,  8tap_regular_sharp);
971
55.8k
    init_mc_fns(FILTER_2D_8TAP_SHARP_REGULAR,  8tap_sharp_regular);
972
55.8k
    init_mc_fns(FILTER_2D_8TAP_SHARP_SMOOTH,   8tap_sharp_smooth);
973
55.8k
    init_mc_fns(FILTER_2D_8TAP_SHARP,          8tap_sharp);
974
55.8k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_REGULAR, 8tap_smooth_regular);
975
55.8k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH,         8tap_smooth);
976
55.8k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_SHARP,   8tap_smooth_sharp);
977
55.8k
    init_mc_fns(FILTER_2D_BILINEAR,            bilin);
978
979
55.8k
    c->avg      = avg_c;
980
55.8k
    c->w_avg    = w_avg_c;
981
55.8k
    c->mask     = mask_c;
982
55.8k
    c->blend    = blend_c;
983
55.8k
    c->blend_v  = blend_v_c;
984
55.8k
    c->blend_h  = blend_h_c;
985
55.8k
    c->w_mask[0] = w_mask_444_c;
986
55.8k
    c->w_mask[1] = w_mask_422_c;
987
55.8k
    c->w_mask[2] = w_mask_420_c;
988
55.8k
    c->warp8x8  = warp_affine_8x8_c;
989
55.8k
    c->warp8x8t = warp_affine_8x8t_c;
990
55.8k
    c->emu_edge = emu_edge_c;
991
55.8k
    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
55.8k
}
dav1d_mc_dsp_init_8bpc
Line
Count
Source
960
25.1k
COLD void bitfn(dav1d_mc_dsp_init)(Dav1dMCDSPContext *const c) {
961
25.1k
#define init_mc_fns(type, name) do { \
962
25.1k
    c->mc        [type] = put_##name##_c; \
963
25.1k
    c->mc_scaled [type] = put_##name##_scaled_c; \
964
25.1k
    c->mct       [type] = prep_##name##_c; \
965
25.1k
    c->mct_scaled[type] = prep_##name##_scaled_c; \
966
25.1k
} while (0)
967
968
25.1k
    init_mc_fns(FILTER_2D_8TAP_REGULAR,        8tap_regular);
969
25.1k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SMOOTH, 8tap_regular_smooth);
970
25.1k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SHARP,  8tap_regular_sharp);
971
25.1k
    init_mc_fns(FILTER_2D_8TAP_SHARP_REGULAR,  8tap_sharp_regular);
972
25.1k
    init_mc_fns(FILTER_2D_8TAP_SHARP_SMOOTH,   8tap_sharp_smooth);
973
25.1k
    init_mc_fns(FILTER_2D_8TAP_SHARP,          8tap_sharp);
974
25.1k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_REGULAR, 8tap_smooth_regular);
975
25.1k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH,         8tap_smooth);
976
25.1k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_SHARP,   8tap_smooth_sharp);
977
25.1k
    init_mc_fns(FILTER_2D_BILINEAR,            bilin);
978
979
25.1k
    c->avg      = avg_c;
980
25.1k
    c->w_avg    = w_avg_c;
981
25.1k
    c->mask     = mask_c;
982
25.1k
    c->blend    = blend_c;
983
25.1k
    c->blend_v  = blend_v_c;
984
25.1k
    c->blend_h  = blend_h_c;
985
25.1k
    c->w_mask[0] = w_mask_444_c;
986
25.1k
    c->w_mask[1] = w_mask_422_c;
987
25.1k
    c->w_mask[2] = w_mask_420_c;
988
25.1k
    c->warp8x8  = warp_affine_8x8_c;
989
25.1k
    c->warp8x8t = warp_affine_8x8t_c;
990
25.1k
    c->emu_edge = emu_edge_c;
991
25.1k
    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
25.1k
}
dav1d_mc_dsp_init_16bpc
Line
Count
Source
960
30.6k
COLD void bitfn(dav1d_mc_dsp_init)(Dav1dMCDSPContext *const c) {
961
30.6k
#define init_mc_fns(type, name) do { \
962
30.6k
    c->mc        [type] = put_##name##_c; \
963
30.6k
    c->mc_scaled [type] = put_##name##_scaled_c; \
964
30.6k
    c->mct       [type] = prep_##name##_c; \
965
30.6k
    c->mct_scaled[type] = prep_##name##_scaled_c; \
966
30.6k
} while (0)
967
968
30.6k
    init_mc_fns(FILTER_2D_8TAP_REGULAR,        8tap_regular);
969
30.6k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SMOOTH, 8tap_regular_smooth);
970
30.6k
    init_mc_fns(FILTER_2D_8TAP_REGULAR_SHARP,  8tap_regular_sharp);
971
30.6k
    init_mc_fns(FILTER_2D_8TAP_SHARP_REGULAR,  8tap_sharp_regular);
972
30.6k
    init_mc_fns(FILTER_2D_8TAP_SHARP_SMOOTH,   8tap_sharp_smooth);
973
30.6k
    init_mc_fns(FILTER_2D_8TAP_SHARP,          8tap_sharp);
974
30.6k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_REGULAR, 8tap_smooth_regular);
975
30.6k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH,         8tap_smooth);
976
30.6k
    init_mc_fns(FILTER_2D_8TAP_SMOOTH_SHARP,   8tap_smooth_sharp);
977
30.6k
    init_mc_fns(FILTER_2D_BILINEAR,            bilin);
978
979
30.6k
    c->avg      = avg_c;
980
30.6k
    c->w_avg    = w_avg_c;
981
30.6k
    c->mask     = mask_c;
982
30.6k
    c->blend    = blend_c;
983
30.6k
    c->blend_v  = blend_v_c;
984
30.6k
    c->blend_h  = blend_h_c;
985
30.6k
    c->w_mask[0] = w_mask_444_c;
986
30.6k
    c->w_mask[1] = w_mask_422_c;
987
30.6k
    c->w_mask[2] = w_mask_420_c;
988
30.6k
    c->warp8x8  = warp_affine_8x8_c;
989
30.6k
    c->warp8x8t = warp_affine_8x8t_c;
990
30.6k
    c->emu_edge = emu_edge_c;
991
30.6k
    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
30.6k
}