Coverage Report

Created: 2025-09-08 07:52

/src/aom/av1/common/convolve.c
Line
Count
Source
1
/*
2
 * Copyright (c) 2016, Alliance for Open Media. All rights reserved.
3
 *
4
 * This source code is subject to the terms of the BSD 2 Clause License and
5
 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6
 * was not distributed with this source code in the LICENSE file, you can
7
 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8
 * Media Patent License 1.0 was not distributed with this source code in the
9
 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10
 */
11
12
#include <assert.h>
13
#include <string.h>
14
15
#include "config/aom_dsp_rtcd.h"
16
#include "config/av1_rtcd.h"
17
18
#include "av1/common/av1_common_int.h"
19
#include "av1/common/blockd.h"
20
#include "av1/common/convolve.h"
21
#include "av1/common/filter.h"
22
#include "av1/common/resize.h"
23
#include "aom_dsp/aom_dsp_common.h"
24
#include "aom_ports/mem.h"
25
26
void av1_convolve_horiz_rs_c(const uint8_t *src, int src_stride, uint8_t *dst,
27
                             int dst_stride, int w, int h,
28
                             const int16_t *x_filters, int x0_qn,
29
27.7k
                             int x_step_qn) {
30
27.7k
  src -= UPSCALE_NORMATIVE_TAPS / 2 - 1;
31
1.30M
  for (int y = 0; y < h; ++y) {
32
1.27M
    int x_qn = x0_qn;
33
136M
    for (int x = 0; x < w; ++x) {
34
135M
      const uint8_t *const src_x = &src[x_qn >> RS_SCALE_SUBPEL_BITS];
35
135M
      const int x_filter_idx =
36
135M
          (x_qn & RS_SCALE_SUBPEL_MASK) >> RS_SCALE_EXTRA_BITS;
37
135M
      assert(x_filter_idx <= RS_SUBPEL_MASK);
38
135M
      const int16_t *const x_filter =
39
135M
          &x_filters[x_filter_idx * UPSCALE_NORMATIVE_TAPS];
40
135M
      int sum = 0;
41
1.21G
      for (int k = 0; k < UPSCALE_NORMATIVE_TAPS; ++k)
42
1.08G
        sum += src_x[k] * x_filter[k];
43
135M
      dst[x] = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS));
44
135M
      x_qn += x_step_qn;
45
135M
    }
46
1.27M
    src += src_stride;
47
1.27M
    dst += dst_stride;
48
1.27M
  }
49
27.7k
}
50
51
#if CONFIG_AV1_HIGHBITDEPTH
52
void av1_highbd_convolve_horiz_rs_c(const uint16_t *src, int src_stride,
53
                                    uint16_t *dst, int dst_stride, int w, int h,
54
                                    const int16_t *x_filters, int x0_qn,
55
75.7k
                                    int x_step_qn, int bd) {
56
75.7k
  src -= UPSCALE_NORMATIVE_TAPS / 2 - 1;
57
3.14M
  for (int y = 0; y < h; ++y) {
58
3.06M
    int x_qn = x0_qn;
59
198M
    for (int x = 0; x < w; ++x) {
60
195M
      const uint16_t *const src_x = &src[x_qn >> RS_SCALE_SUBPEL_BITS];
61
195M
      const int x_filter_idx =
62
195M
          (x_qn & RS_SCALE_SUBPEL_MASK) >> RS_SCALE_EXTRA_BITS;
63
195M
      assert(x_filter_idx <= RS_SUBPEL_MASK);
64
195M
      const int16_t *const x_filter =
65
195M
          &x_filters[x_filter_idx * UPSCALE_NORMATIVE_TAPS];
66
195M
      int sum = 0;
67
1.75G
      for (int k = 0; k < UPSCALE_NORMATIVE_TAPS; ++k)
68
1.56G
        sum += src_x[k] * x_filter[k];
69
195M
      dst[x] = clip_pixel_highbd(ROUND_POWER_OF_TWO(sum, FILTER_BITS), bd);
70
195M
      x_qn += x_step_qn;
71
195M
    }
72
3.06M
    src += src_stride;
73
3.06M
    dst += dst_stride;
74
3.06M
  }
75
75.7k
}
76
#endif  // CONFIG_AV1_HIGHBITDEPTH
77
78
void av1_convolve_2d_sr_c(const uint8_t *src, int src_stride, uint8_t *dst,
79
                          int dst_stride, int w, int h,
80
                          const InterpFilterParams *filter_params_x,
81
                          const InterpFilterParams *filter_params_y,
82
                          const int subpel_x_qn, const int subpel_y_qn,
83
8.53k
                          ConvolveParams *conv_params) {
84
8.53k
  int16_t im_block[(MAX_SB_SIZE + MAX_FILTER_TAP - 1) * MAX_SB_SIZE];
85
8.53k
  int im_h = h + filter_params_y->taps - 1;
86
8.53k
  int im_stride = w;
87
8.53k
  assert(w <= MAX_SB_SIZE && h <= MAX_SB_SIZE);
88
8.53k
  const int fo_vert = filter_params_y->taps / 2 - 1;
89
8.53k
  const int fo_horiz = filter_params_x->taps / 2 - 1;
90
8.53k
  const int bd = 8;
91
8.53k
  const int bits =
92
8.53k
      FILTER_BITS * 2 - conv_params->round_0 - conv_params->round_1;
93
94
  // horizontal filter
95
8.53k
  const uint8_t *src_horiz = src - fo_vert * src_stride;
96
8.53k
  const int16_t *x_filter = av1_get_interp_filter_subpel_kernel(
97
8.53k
      filter_params_x, subpel_x_qn & SUBPEL_MASK);
98
120k
  for (int y = 0; y < im_h; ++y) {
99
764k
    for (int x = 0; x < w; ++x) {
100
652k
      int32_t sum = (1 << (bd + FILTER_BITS - 1));
101
5.86M
      for (int k = 0; k < filter_params_x->taps; ++k) {
102
5.21M
        sum += x_filter[k] * src_horiz[y * src_stride + x - fo_horiz + k];
103
5.21M
      }
104
105
      // TODO(aomedia:3393): for 12-tap filter, in extreme cases, the result can
106
      // be beyond the following range. For better prediction, a clamping can be
107
      // added for 12 tap filter to ensure the horizontal filtering result is
108
      // within 16 bit. The same applies to the vertical filtering.
109
652k
      assert(filter_params_x->taps > 8 ||
110
652k
             (0 <= sum && sum < (1 << (bd + FILTER_BITS + 1))));
111
652k
      im_block[y * im_stride + x] =
112
652k
          (int16_t)ROUND_POWER_OF_TWO(sum, conv_params->round_0);
113
652k
    }
114
111k
  }
115
116
  // vertical filter
117
8.53k
  int16_t *src_vert = im_block + fo_vert * im_stride;
118
8.53k
  const int16_t *y_filter = av1_get_interp_filter_subpel_kernel(
119
8.53k
      filter_params_y, subpel_y_qn & SUBPEL_MASK);
120
8.53k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
121
60.7k
  for (int y = 0; y < h; ++y) {
122
380k
    for (int x = 0; x < w; ++x) {
123
328k
      int32_t sum = 1 << offset_bits;
124
2.95M
      for (int k = 0; k < filter_params_y->taps; ++k) {
125
2.62M
        sum += y_filter[k] * src_vert[(y - fo_vert + k) * im_stride + x];
126
2.62M
      }
127
328k
      assert(filter_params_y->taps > 8 ||
128
328k
             (0 <= sum && sum < (1 << (offset_bits + 2))));
129
328k
      int16_t res = ROUND_POWER_OF_TWO(sum, conv_params->round_1) -
130
328k
                    ((1 << (offset_bits - conv_params->round_1)) +
131
328k
                     (1 << (offset_bits - conv_params->round_1 - 1)));
132
328k
      dst[y * dst_stride + x] = clip_pixel(ROUND_POWER_OF_TWO(res, bits));
133
328k
    }
134
52.2k
  }
135
8.53k
}
136
137
void av1_convolve_y_sr_c(const uint8_t *src, int src_stride, uint8_t *dst,
138
                         int dst_stride, int w, int h,
139
                         const InterpFilterParams *filter_params_y,
140
5.54k
                         const int subpel_y_qn) {
141
5.54k
  const int fo_vert = filter_params_y->taps / 2 - 1;
142
143
  // vertical filter
144
5.54k
  const int16_t *y_filter = av1_get_interp_filter_subpel_kernel(
145
5.54k
      filter_params_y, subpel_y_qn & SUBPEL_MASK);
146
39.0k
  for (int y = 0; y < h; ++y) {
147
264k
    for (int x = 0; x < w; ++x) {
148
230k
      int32_t res = 0;
149
2.07M
      for (int k = 0; k < filter_params_y->taps; ++k) {
150
1.84M
        res += y_filter[k] * src[(y - fo_vert + k) * src_stride + x];
151
1.84M
      }
152
230k
      dst[y * dst_stride + x] =
153
230k
          clip_pixel(ROUND_POWER_OF_TWO(res, FILTER_BITS));
154
230k
    }
155
33.4k
  }
156
5.54k
}
157
158
void av1_convolve_x_sr_c(const uint8_t *src, int src_stride, uint8_t *dst,
159
                         int dst_stride, int w, int h,
160
                         const InterpFilterParams *filter_params_x,
161
9.46k
                         const int subpel_x_qn, ConvolveParams *conv_params) {
162
9.46k
  const int fo_horiz = filter_params_x->taps / 2 - 1;
163
9.46k
  const int bits = FILTER_BITS - conv_params->round_0;
164
165
9.46k
  assert(bits >= 0);
166
9.46k
  assert((FILTER_BITS - conv_params->round_1) >= 0 ||
167
9.46k
         ((conv_params->round_0 + conv_params->round_1) == 2 * FILTER_BITS));
168
169
  // horizontal filter
170
9.46k
  const int16_t *x_filter = av1_get_interp_filter_subpel_kernel(
171
9.46k
      filter_params_x, subpel_x_qn & SUBPEL_MASK);
172
173
60.7k
  for (int y = 0; y < h; ++y) {
174
328k
    for (int x = 0; x < w; ++x) {
175
277k
      int32_t res = 0;
176
2.49M
      for (int k = 0; k < filter_params_x->taps; ++k) {
177
2.21M
        res += x_filter[k] * src[y * src_stride + x - fo_horiz + k];
178
2.21M
      }
179
277k
      res = ROUND_POWER_OF_TWO(res, conv_params->round_0);
180
277k
      dst[y * dst_stride + x] = clip_pixel(ROUND_POWER_OF_TWO(res, bits));
181
277k
    }
182
51.2k
  }
183
9.46k
}
184
185
// This function is exactly the same as av1_convolve_2d_sr_c, and is an
186
// optimized version for intrabc. Use the following 2-tap filter:
187
// DECLARE_ALIGNED(256, static const int16_t,
188
//                 av1_intrabc_bilinear_filter[2 * SUBPEL_SHIFTS]) = {
189
//   128, 0,  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
190
//   64,  64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
191
// };
192
void av1_convolve_2d_sr_intrabc_c(const uint8_t *src, int src_stride,
193
                                  uint8_t *dst, int dst_stride, int w, int h,
194
                                  const InterpFilterParams *filter_params_x,
195
                                  const InterpFilterParams *filter_params_y,
196
                                  const int subpel_x_qn, const int subpel_y_qn,
197
3.62k
                                  ConvolveParams *conv_params) {
198
3.62k
  assert(subpel_x_qn == 8);
199
3.62k
  assert(subpel_y_qn == 8);
200
3.62k
  assert(filter_params_x->taps == 2 && filter_params_y->taps == 2);
201
3.62k
  assert((conv_params->round_0 + conv_params->round_1) == 2 * FILTER_BITS);
202
3.62k
  (void)filter_params_x;
203
3.62k
  (void)subpel_x_qn;
204
3.62k
  (void)filter_params_y;
205
3.62k
  (void)subpel_y_qn;
206
3.62k
  (void)conv_params;
207
208
3.62k
  int16_t im_block[(MAX_SB_SIZE + MAX_FILTER_TAP - 1) * MAX_SB_SIZE];
209
3.62k
  int im_h = h + 1;
210
3.62k
  int im_stride = w;
211
3.62k
  assert(w <= MAX_SB_SIZE && h <= MAX_SB_SIZE);
212
3.62k
  const int bd = 8;
213
214
  // horizontal filter
215
  // explicitly operate for subpel_x_qn = 8.
216
3.62k
  int16_t *im = im_block;
217
34.1k
  for (int y = 0; y < im_h; ++y) {
218
371k
    for (int x = 0; x < w; ++x) {
219
341k
      const int32_t sum = (1 << bd) + src[x] + src[x + 1];
220
341k
      assert(0 <= sum && sum < (1 << (bd + 2)));
221
341k
      im[x] = sum;
222
341k
    }
223
30.4k
    src += src_stride;
224
30.4k
    im += im_stride;
225
30.4k
  }
226
227
  // vertical filter
228
  // explicitly operate for subpel_y_qn = 8.
229
3.62k
  int16_t *src_vert = im_block;
230
30.4k
  for (int y = 0; y < h; ++y) {
231
337k
    for (int x = 0; x < w; ++x) {
232
311k
      const int32_t sum =
233
311k
          (1 << (bd + 2)) + src_vert[x] + src_vert[im_stride + x];
234
311k
      assert(0 <= sum && sum < (1 << (bd + 4)));
235
311k
      const int16_t res =
236
311k
          ROUND_POWER_OF_TWO(sum, 2) - ((1 << bd) + (1 << (bd - 1)));
237
311k
      dst[x] = clip_pixel(res);
238
311k
    }
239
26.8k
    src_vert += im_stride;
240
26.8k
    dst += dst_stride;
241
26.8k
  }
242
3.62k
}
243
244
// This function is exactly the same as av1_convolve_y_sr_c, and is an
245
// optimized version for intrabc.
246
void av1_convolve_y_sr_intrabc_c(const uint8_t *src, int src_stride,
247
                                 uint8_t *dst, int dst_stride, int w, int h,
248
                                 const InterpFilterParams *filter_params_y,
249
3.75k
                                 const int subpel_y_qn) {
250
3.75k
  assert(subpel_y_qn == 8);
251
3.75k
  assert(filter_params_y->taps == 2);
252
3.75k
  (void)filter_params_y;
253
3.75k
  (void)subpel_y_qn;
254
255
  // vertical filter
256
  // explicitly operate for subpel_y_qn = 8.
257
29.9k
  for (int y = 0; y < h; ++y) {
258
321k
    for (int x = 0; x < w; ++x) {
259
295k
      const int32_t res = src[x] + src[src_stride + x];
260
295k
      dst[x] = clip_pixel(ROUND_POWER_OF_TWO(res, 1));
261
295k
    }
262
26.2k
    src += src_stride;
263
26.2k
    dst += dst_stride;
264
26.2k
  }
265
3.75k
}
266
267
// This function is exactly the same as av1_convolve_x_sr_c, and is an
268
// optimized version for intrabc.
269
void av1_convolve_x_sr_intrabc_c(const uint8_t *src, int src_stride,
270
                                 uint8_t *dst, int dst_stride, int w, int h,
271
                                 const InterpFilterParams *filter_params_x,
272
                                 const int subpel_x_qn,
273
3.99k
                                 ConvolveParams *conv_params) {
274
3.99k
  assert(subpel_x_qn == 8);
275
3.99k
  assert(filter_params_x->taps == 2);
276
3.99k
  assert((conv_params->round_0 + conv_params->round_1) == 2 * FILTER_BITS);
277
3.99k
  (void)filter_params_x;
278
3.99k
  (void)subpel_x_qn;
279
3.99k
  (void)conv_params;
280
281
  // horizontal filter
282
  // explicitly operate for subpel_x_qn = 8.
283
42.9k
  for (int y = 0; y < h; ++y) {
284
877k
    for (int x = 0; x < w; ++x) {
285
838k
      const int32_t res = src[x] + src[x + 1];
286
838k
      dst[x] = clip_pixel(ROUND_POWER_OF_TWO(res, 1));
287
838k
    }
288
38.9k
    src += src_stride;
289
38.9k
    dst += dst_stride;
290
38.9k
  }
291
3.99k
}
292
293
void av1_dist_wtd_convolve_2d_c(const uint8_t *src, int src_stride,
294
                                uint8_t *dst, int dst_stride, int w, int h,
295
                                const InterpFilterParams *filter_params_x,
296
                                const InterpFilterParams *filter_params_y,
297
                                const int subpel_x_qn, const int subpel_y_qn,
298
2.67k
                                ConvolveParams *conv_params) {
299
2.67k
  CONV_BUF_TYPE *dst16 = conv_params->dst;
300
2.67k
  int dst16_stride = conv_params->dst_stride;
301
2.67k
  int16_t im_block[(MAX_SB_SIZE + MAX_FILTER_TAP - 1) * MAX_SB_SIZE];
302
2.67k
  int im_h = h + filter_params_y->taps - 1;
303
2.67k
  int im_stride = w;
304
2.67k
  const int fo_vert = filter_params_y->taps / 2 - 1;
305
2.67k
  const int fo_horiz = filter_params_x->taps / 2 - 1;
306
2.67k
  const int bd = 8;
307
2.67k
  const int round_bits =
308
2.67k
      2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1;
309
310
  // horizontal filter
311
2.67k
  const uint8_t *src_horiz = src - fo_vert * src_stride;
312
2.67k
  const int16_t *x_filter = av1_get_interp_filter_subpel_kernel(
313
2.67k
      filter_params_x, subpel_x_qn & SUBPEL_MASK);
314
45.6k
  for (int y = 0; y < im_h; ++y) {
315
403k
    for (int x = 0; x < w; ++x) {
316
360k
      int32_t sum = (1 << (bd + FILTER_BITS - 1));
317
3.24M
      for (int k = 0; k < filter_params_x->taps; ++k) {
318
2.88M
        sum += x_filter[k] * src_horiz[y * src_stride + x - fo_horiz + k];
319
2.88M
      }
320
360k
      assert(filter_params_x->taps > 8 ||
321
360k
             (0 <= sum && sum < (1 << (bd + FILTER_BITS + 1))));
322
360k
      im_block[y * im_stride + x] =
323
360k
          (int16_t)ROUND_POWER_OF_TWO(sum, conv_params->round_0);
324
360k
    }
325
42.9k
  }
326
327
  // vertical filter
328
2.67k
  int16_t *src_vert = im_block + fo_vert * im_stride;
329
2.67k
  const int16_t *y_filter = av1_get_interp_filter_subpel_kernel(
330
2.67k
      filter_params_y, subpel_y_qn & SUBPEL_MASK);
331
2.67k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
332
26.9k
  for (int y = 0; y < h; ++y) {
333
238k
    for (int x = 0; x < w; ++x) {
334
213k
      int32_t sum = 1 << offset_bits;
335
1.92M
      for (int k = 0; k < filter_params_y->taps; ++k) {
336
1.71M
        sum += y_filter[k] * src_vert[(y - fo_vert + k) * im_stride + x];
337
1.71M
      }
338
213k
      assert(filter_params_y->taps > 8 ||
339
213k
             (0 <= sum && sum < (1 << (offset_bits + 2))));
340
213k
      CONV_BUF_TYPE res = ROUND_POWER_OF_TWO(sum, conv_params->round_1);
341
213k
      if (conv_params->do_average) {
342
115k
        int32_t tmp = dst16[y * dst16_stride + x];
343
115k
        if (conv_params->use_dist_wtd_comp_avg) {
344
46.7k
          tmp = tmp * conv_params->fwd_offset + res * conv_params->bck_offset;
345
46.7k
          tmp = tmp >> DIST_PRECISION_BITS;
346
69.2k
        } else {
347
69.2k
          tmp += res;
348
69.2k
          tmp = tmp >> 1;
349
69.2k
        }
350
115k
        tmp -= (1 << (offset_bits - conv_params->round_1)) +
351
115k
               (1 << (offset_bits - conv_params->round_1 - 1));
352
115k
        dst[y * dst_stride + x] =
353
115k
            clip_pixel(ROUND_POWER_OF_TWO(tmp, round_bits));
354
115k
      } else {
355
97.8k
        dst16[y * dst16_stride + x] = res;
356
97.8k
      }
357
213k
    }
358
24.2k
  }
359
2.67k
}
360
361
void av1_dist_wtd_convolve_y_c(const uint8_t *src, int src_stride, uint8_t *dst,
362
                               int dst_stride, int w, int h,
363
                               const InterpFilterParams *filter_params_y,
364
                               const int subpel_y_qn,
365
2.61k
                               ConvolveParams *conv_params) {
366
2.61k
  CONV_BUF_TYPE *dst16 = conv_params->dst;
367
2.61k
  int dst16_stride = conv_params->dst_stride;
368
2.61k
  const int fo_vert = filter_params_y->taps / 2 - 1;
369
2.61k
  const int bits = FILTER_BITS - conv_params->round_0;
370
2.61k
  const int bd = 8;
371
2.61k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
372
2.61k
  const int round_offset = (1 << (offset_bits - conv_params->round_1)) +
373
2.61k
                           (1 << (offset_bits - conv_params->round_1 - 1));
374
2.61k
  const int round_bits =
375
2.61k
      2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1;
376
377
  // vertical filter
378
2.61k
  const int16_t *y_filter = av1_get_interp_filter_subpel_kernel(
379
2.61k
      filter_params_y, subpel_y_qn & SUBPEL_MASK);
380
28.0k
  for (int y = 0; y < h; ++y) {
381
245k
    for (int x = 0; x < w; ++x) {
382
219k
      int32_t res = 0;
383
1.97M
      for (int k = 0; k < filter_params_y->taps; ++k) {
384
1.75M
        res += y_filter[k] * src[(y - fo_vert + k) * src_stride + x];
385
1.75M
      }
386
219k
      res *= (1 << bits);
387
219k
      res = ROUND_POWER_OF_TWO(res, conv_params->round_1) + round_offset;
388
389
219k
      if (conv_params->do_average) {
390
75.5k
        int32_t tmp = dst16[y * dst16_stride + x];
391
75.5k
        if (conv_params->use_dist_wtd_comp_avg) {
392
9.02k
          tmp = tmp * conv_params->fwd_offset + res * conv_params->bck_offset;
393
9.02k
          tmp = tmp >> DIST_PRECISION_BITS;
394
66.5k
        } else {
395
66.5k
          tmp += res;
396
66.5k
          tmp = tmp >> 1;
397
66.5k
        }
398
75.5k
        tmp -= round_offset;
399
75.5k
        dst[y * dst_stride + x] =
400
75.5k
            clip_pixel(ROUND_POWER_OF_TWO(tmp, round_bits));
401
144k
      } else {
402
144k
        dst16[y * dst16_stride + x] = res;
403
144k
      }
404
219k
    }
405
25.3k
  }
406
2.61k
}
407
408
void av1_dist_wtd_convolve_x_c(const uint8_t *src, int src_stride, uint8_t *dst,
409
                               int dst_stride, int w, int h,
410
                               const InterpFilterParams *filter_params_x,
411
                               const int subpel_x_qn,
412
1.38k
                               ConvolveParams *conv_params) {
413
1.38k
  CONV_BUF_TYPE *dst16 = conv_params->dst;
414
1.38k
  int dst16_stride = conv_params->dst_stride;
415
1.38k
  const int fo_horiz = filter_params_x->taps / 2 - 1;
416
1.38k
  const int bits = FILTER_BITS - conv_params->round_1;
417
1.38k
  const int bd = 8;
418
1.38k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
419
1.38k
  const int round_offset = (1 << (offset_bits - conv_params->round_1)) +
420
1.38k
                           (1 << (offset_bits - conv_params->round_1 - 1));
421
1.38k
  const int round_bits =
422
1.38k
      2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1;
423
424
  // horizontal filter
425
1.38k
  const int16_t *x_filter = av1_get_interp_filter_subpel_kernel(
426
1.38k
      filter_params_x, subpel_x_qn & SUBPEL_MASK);
427
15.2k
  for (int y = 0; y < h; ++y) {
428
159k
    for (int x = 0; x < w; ++x) {
429
145k
      int32_t res = 0;
430
1.31M
      for (int k = 0; k < filter_params_x->taps; ++k) {
431
1.16M
        res += x_filter[k] * src[y * src_stride + x - fo_horiz + k];
432
1.16M
      }
433
145k
      res = (1 << bits) * ROUND_POWER_OF_TWO(res, conv_params->round_0);
434
145k
      res += round_offset;
435
436
145k
      if (conv_params->do_average) {
437
48.2k
        int32_t tmp = dst16[y * dst16_stride + x];
438
48.2k
        if (conv_params->use_dist_wtd_comp_avg) {
439
15.8k
          tmp = tmp * conv_params->fwd_offset + res * conv_params->bck_offset;
440
15.8k
          tmp = tmp >> DIST_PRECISION_BITS;
441
32.4k
        } else {
442
32.4k
          tmp += res;
443
32.4k
          tmp = tmp >> 1;
444
32.4k
        }
445
48.2k
        tmp -= round_offset;
446
48.2k
        dst[y * dst_stride + x] =
447
48.2k
            clip_pixel(ROUND_POWER_OF_TWO(tmp, round_bits));
448
97.4k
      } else {
449
97.4k
        dst16[y * dst16_stride + x] = res;
450
97.4k
      }
451
145k
    }
452
13.8k
  }
453
1.38k
}
454
455
void av1_dist_wtd_convolve_2d_copy_c(const uint8_t *src, int src_stride,
456
                                     uint8_t *dst, int dst_stride, int w, int h,
457
5.44k
                                     ConvolveParams *conv_params) {
458
5.44k
  CONV_BUF_TYPE *dst16 = conv_params->dst;
459
5.44k
  int dst16_stride = conv_params->dst_stride;
460
5.44k
  const int bits =
461
5.44k
      FILTER_BITS * 2 - conv_params->round_1 - conv_params->round_0;
462
5.44k
  const int bd = 8;
463
5.44k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
464
5.44k
  const int round_offset = (1 << (offset_bits - conv_params->round_1)) +
465
5.44k
                           (1 << (offset_bits - conv_params->round_1 - 1));
466
467
59.0k
  for (int y = 0; y < h; ++y) {
468
622k
    for (int x = 0; x < w; ++x) {
469
568k
      CONV_BUF_TYPE res = src[y * src_stride + x] << bits;
470
568k
      res += round_offset;
471
472
568k
      if (conv_params->do_average) {
473
133k
        int32_t tmp = dst16[y * dst16_stride + x];
474
133k
        if (conv_params->use_dist_wtd_comp_avg) {
475
21.5k
          tmp = tmp * conv_params->fwd_offset + res * conv_params->bck_offset;
476
21.5k
          tmp = tmp >> DIST_PRECISION_BITS;
477
111k
        } else {
478
111k
          tmp += res;
479
111k
          tmp = tmp >> 1;
480
111k
        }
481
133k
        tmp -= round_offset;
482
133k
        dst[y * dst_stride + x] = clip_pixel(ROUND_POWER_OF_TWO(tmp, bits));
483
435k
      } else {
484
435k
        dst16[y * dst16_stride + x] = res;
485
435k
      }
486
568k
    }
487
53.6k
  }
488
5.44k
}
489
490
void av1_convolve_2d_scale_c(const uint8_t *src, int src_stride, uint8_t *dst,
491
                             int dst_stride, int w, int h,
492
                             const InterpFilterParams *filter_params_x,
493
                             const InterpFilterParams *filter_params_y,
494
                             const int subpel_x_qn, const int x_step_qn,
495
                             const int subpel_y_qn, const int y_step_qn,
496
12.6k
                             ConvolveParams *conv_params) {
497
12.6k
  int16_t im_block[(2 * MAX_SB_SIZE + MAX_FILTER_TAP) * MAX_SB_SIZE];
498
12.6k
  int im_h = (((h - 1) * y_step_qn + subpel_y_qn) >> SCALE_SUBPEL_BITS) +
499
12.6k
             filter_params_y->taps;
500
12.6k
  CONV_BUF_TYPE *dst16 = conv_params->dst;
501
12.6k
  const int dst16_stride = conv_params->dst_stride;
502
12.6k
  const int bits =
503
12.6k
      FILTER_BITS * 2 - conv_params->round_0 - conv_params->round_1;
504
12.6k
  assert(bits >= 0);
505
12.6k
  int im_stride = w;
506
12.6k
  const int fo_vert = filter_params_y->taps / 2 - 1;
507
12.6k
  const int fo_horiz = filter_params_x->taps / 2 - 1;
508
12.6k
  const int bd = 8;
509
510
  // horizontal filter
511
12.6k
  const uint8_t *src_horiz = src - fo_vert * src_stride;
512
195k
  for (int y = 0; y < im_h; ++y) {
513
183k
    int x_qn = subpel_x_qn;
514
1.80M
    for (int x = 0; x < w; ++x, x_qn += x_step_qn) {
515
1.61M
      const uint8_t *const src_x = &src_horiz[(x_qn >> SCALE_SUBPEL_BITS)];
516
1.61M
      const int x_filter_idx = (x_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS;
517
1.61M
      assert(x_filter_idx < SUBPEL_SHIFTS);
518
1.61M
      const int16_t *x_filter =
519
1.61M
          av1_get_interp_filter_subpel_kernel(filter_params_x, x_filter_idx);
520
1.61M
      int32_t sum = (1 << (bd + FILTER_BITS - 1));
521
14.5M
      for (int k = 0; k < filter_params_x->taps; ++k) {
522
12.9M
        sum += x_filter[k] * src_x[k - fo_horiz];
523
12.9M
      }
524
1.61M
      assert(filter_params_x->taps > 8 ||
525
1.61M
             (0 <= sum && sum < (1 << (bd + FILTER_BITS + 1))));
526
1.61M
      im_block[y * im_stride + x] =
527
1.61M
          (int16_t)ROUND_POWER_OF_TWO(sum, conv_params->round_0);
528
1.61M
    }
529
183k
    src_horiz += src_stride;
530
183k
  }
531
532
  // vertical filter
533
12.6k
  int16_t *src_vert = im_block + fo_vert * im_stride;
534
12.6k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
535
93.0k
  for (int x = 0; x < w; ++x) {
536
80.4k
    int y_qn = subpel_y_qn;
537
1.12M
    for (int y = 0; y < h; ++y, y_qn += y_step_qn) {
538
1.04M
      const int16_t *src_y = &src_vert[(y_qn >> SCALE_SUBPEL_BITS) * im_stride];
539
1.04M
      const int y_filter_idx = (y_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS;
540
1.04M
      assert(y_filter_idx < SUBPEL_SHIFTS);
541
1.04M
      const int16_t *y_filter =
542
1.04M
          av1_get_interp_filter_subpel_kernel(filter_params_y, y_filter_idx);
543
1.04M
      int32_t sum = 1 << offset_bits;
544
9.41M
      for (int k = 0; k < filter_params_y->taps; ++k) {
545
8.36M
        sum += y_filter[k] * src_y[(k - fo_vert) * im_stride];
546
8.36M
      }
547
1.04M
      assert(filter_params_y->taps > 8 ||
548
1.04M
             (0 <= sum && sum < (1 << (offset_bits + 2))));
549
1.04M
      CONV_BUF_TYPE res = ROUND_POWER_OF_TWO(sum, conv_params->round_1);
550
1.04M
      if (conv_params->is_compound) {
551
345k
        if (conv_params->do_average) {
552
236k
          int32_t tmp = dst16[y * dst16_stride + x];
553
236k
          if (conv_params->use_dist_wtd_comp_avg) {
554
144k
            tmp = tmp * conv_params->fwd_offset + res * conv_params->bck_offset;
555
144k
            tmp = tmp >> DIST_PRECISION_BITS;
556
144k
          } else {
557
92.5k
            tmp += res;
558
92.5k
            tmp = tmp >> 1;
559
92.5k
          }
560
          /* Subtract round offset and convolve round */
561
236k
          tmp = tmp - ((1 << (offset_bits - conv_params->round_1)) +
562
236k
                       (1 << (offset_bits - conv_params->round_1 - 1)));
563
236k
          dst[y * dst_stride + x] = clip_pixel(ROUND_POWER_OF_TWO(tmp, bits));
564
236k
        } else {
565
108k
          dst16[y * dst16_stride + x] = res;
566
108k
        }
567
700k
      } else {
568
        /* Subtract round offset and convolve round */
569
700k
        int32_t tmp = res - ((1 << (offset_bits - conv_params->round_1)) +
570
700k
                             (1 << (offset_bits - conv_params->round_1 - 1)));
571
700k
        dst[y * dst_stride + x] = clip_pixel(ROUND_POWER_OF_TWO(tmp, bits));
572
700k
      }
573
1.04M
    }
574
80.4k
    src_vert++;
575
80.4k
  }
576
12.6k
}
577
578
static void convolve_2d_scale_wrapper(
579
    const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w,
580
    int h, const InterpFilterParams *filter_params_x,
581
    const InterpFilterParams *filter_params_y, const int subpel_x_qn,
582
    const int x_step_qn, const int subpel_y_qn, const int y_step_qn,
583
12.6k
    ConvolveParams *conv_params) {
584
12.6k
  if (conv_params->is_compound) {
585
2.55k
    assert(conv_params->dst != NULL);
586
2.55k
  }
587
12.6k
  av1_convolve_2d_scale(src, src_stride, dst, dst_stride, w, h, filter_params_x,
588
12.6k
                        filter_params_y, subpel_x_qn, x_step_qn, subpel_y_qn,
589
12.6k
                        y_step_qn, conv_params);
590
12.6k
}
591
592
static void convolve_2d_facade_compound(
593
    const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w,
594
    int h, const InterpFilterParams *filter_params_x,
595
    const InterpFilterParams *filter_params_y, const int subpel_x_qn,
596
12.1k
    const int subpel_y_qn, ConvolveParams *conv_params) {
597
12.1k
  const bool need_x = subpel_x_qn != 0;
598
12.1k
  const bool need_y = subpel_y_qn != 0;
599
12.1k
  if (!need_x && !need_y) {
600
5.44k
    av1_dist_wtd_convolve_2d_copy(src, src_stride, dst, dst_stride, w, h,
601
5.44k
                                  conv_params);
602
6.66k
  } else if (need_x && !need_y) {
603
1.38k
    av1_dist_wtd_convolve_x(src, src_stride, dst, dst_stride, w, h,
604
1.38k
                            filter_params_x, subpel_x_qn, conv_params);
605
5.28k
  } else if (!need_x && need_y) {
606
2.61k
    av1_dist_wtd_convolve_y(src, src_stride, dst, dst_stride, w, h,
607
2.61k
                            filter_params_y, subpel_y_qn, conv_params);
608
2.67k
  } else {
609
2.67k
    assert(need_y && need_x);
610
2.67k
    av1_dist_wtd_convolve_2d(src, src_stride, dst, dst_stride, w, h,
611
2.67k
                             filter_params_x, filter_params_y, subpel_x_qn,
612
2.67k
                             subpel_y_qn, conv_params);
613
2.67k
  }
614
12.1k
}
615
616
static void convolve_2d_facade_single(
617
    const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int w,
618
    int h, const InterpFilterParams *filter_params_x,
619
    const InterpFilterParams *filter_params_y, const int subpel_x_qn,
620
186k
    const int subpel_y_qn, ConvolveParams *conv_params) {
621
186k
  const bool need_x = subpel_x_qn != 0;
622
186k
  const bool need_y = subpel_y_qn != 0;
623
186k
  if (!need_x && !need_y) {
624
163k
    aom_convolve_copy(src, src_stride, dst, dst_stride, w, h);
625
163k
  } else if (need_x && !need_y) {
626
9.46k
    av1_convolve_x_sr(src, src_stride, dst, dst_stride, w, h, filter_params_x,
627
9.46k
                      subpel_x_qn, conv_params);
628
14.0k
  } else if (!need_x && need_y) {
629
5.54k
    av1_convolve_y_sr(src, src_stride, dst, dst_stride, w, h, filter_params_y,
630
5.54k
                      subpel_y_qn);
631
8.53k
  } else {
632
8.53k
    assert(need_x && need_y);
633
8.53k
    av1_convolve_2d_sr(src, src_stride, dst, dst_stride, w, h, filter_params_x,
634
8.53k
                       filter_params_y, subpel_x_qn, subpel_y_qn, conv_params);
635
8.53k
  }
636
186k
}
637
638
void av1_convolve_2d_facade(const uint8_t *src, int src_stride, uint8_t *dst,
639
                            int dst_stride, int w, int h,
640
                            const InterpFilterParams *interp_filters[2],
641
                            const int subpel_x_qn, int x_step_q4,
642
                            const int subpel_y_qn, int y_step_q4, int scaled,
643
222k
                            ConvolveParams *conv_params) {
644
222k
  (void)x_step_q4;
645
222k
  (void)y_step_q4;
646
222k
  (void)dst;
647
222k
  (void)dst_stride;
648
649
222k
  const InterpFilterParams *filter_params_x = interp_filters[0];
650
222k
  const InterpFilterParams *filter_params_y = interp_filters[1];
651
652
  // TODO(jingning, yunqing): Add SIMD support to 2-tap filter case.
653
  // 2-tap filter indicates that it is for IntraBC.
654
222k
  if (filter_params_x->taps == 2 || filter_params_y->taps == 2) {
655
154k
    assert(filter_params_x->taps == 2 && filter_params_y->taps == 2);
656
154k
    assert(!scaled);
657
154k
    if (subpel_x_qn && subpel_y_qn) {
658
3.62k
      av1_convolve_2d_sr_intrabc(src, src_stride, dst, dst_stride, w, h,
659
3.62k
                                 filter_params_x, filter_params_y, subpel_x_qn,
660
3.62k
                                 subpel_y_qn, conv_params);
661
3.62k
      return;
662
150k
    } else if (subpel_x_qn) {
663
3.99k
      av1_convolve_x_sr_intrabc(src, src_stride, dst, dst_stride, w, h,
664
3.99k
                                filter_params_x, subpel_x_qn, conv_params);
665
3.99k
      return;
666
146k
    } else if (subpel_y_qn) {
667
3.75k
      av1_convolve_y_sr_intrabc(src, src_stride, dst, dst_stride, w, h,
668
3.75k
                                filter_params_y, subpel_y_qn);
669
3.75k
      return;
670
3.75k
    }
671
154k
  }
672
673
211k
  if (scaled) {
674
12.6k
    convolve_2d_scale_wrapper(src, src_stride, dst, dst_stride, w, h,
675
12.6k
                              filter_params_x, filter_params_y, subpel_x_qn,
676
12.6k
                              x_step_q4, subpel_y_qn, y_step_q4, conv_params);
677
198k
  } else if (conv_params->is_compound) {
678
12.1k
    convolve_2d_facade_compound(src, src_stride, dst, dst_stride, w, h,
679
12.1k
                                filter_params_x, filter_params_y, subpel_x_qn,
680
12.1k
                                subpel_y_qn, conv_params);
681
186k
  } else {
682
186k
    convolve_2d_facade_single(src, src_stride, dst, dst_stride, w, h,
683
186k
                              filter_params_x, filter_params_y, subpel_x_qn,
684
186k
                              subpel_y_qn, conv_params);
685
186k
  }
686
211k
}
687
688
#if CONFIG_AV1_HIGHBITDEPTH
689
void av1_highbd_convolve_x_sr_c(const uint16_t *src, int src_stride,
690
                                uint16_t *dst, int dst_stride, int w, int h,
691
                                const InterpFilterParams *filter_params_x,
692
                                const int subpel_x_qn,
693
8.24k
                                ConvolveParams *conv_params, int bd) {
694
8.24k
  const int fo_horiz = filter_params_x->taps / 2 - 1;
695
8.24k
  const int bits = FILTER_BITS - conv_params->round_0;
696
697
8.24k
  assert(bits >= 0);
698
8.24k
  assert((FILTER_BITS - conv_params->round_1) >= 0 ||
699
8.24k
         ((conv_params->round_0 + conv_params->round_1) == 2 * FILTER_BITS));
700
701
  // horizontal filter
702
8.24k
  const int16_t *x_filter = av1_get_interp_filter_subpel_kernel(
703
8.24k
      filter_params_x, subpel_x_qn & SUBPEL_MASK);
704
60.3k
  for (int y = 0; y < h; ++y) {
705
389k
    for (int x = 0; x < w; ++x) {
706
337k
      int32_t res = 0;
707
3.03M
      for (int k = 0; k < filter_params_x->taps; ++k) {
708
2.70M
        res += x_filter[k] * src[y * src_stride + x - fo_horiz + k];
709
2.70M
      }
710
337k
      res = ROUND_POWER_OF_TWO(res, conv_params->round_0);
711
337k
      dst[y * dst_stride + x] =
712
337k
          clip_pixel_highbd(ROUND_POWER_OF_TWO(res, bits), bd);
713
337k
    }
714
52.1k
  }
715
8.24k
}
716
717
void av1_highbd_convolve_y_sr_c(const uint16_t *src, int src_stride,
718
                                uint16_t *dst, int dst_stride, int w, int h,
719
                                const InterpFilterParams *filter_params_y,
720
5.76k
                                const int subpel_y_qn, int bd) {
721
5.76k
  const int fo_vert = filter_params_y->taps / 2 - 1;
722
  // vertical filter
723
5.76k
  const int16_t *y_filter = av1_get_interp_filter_subpel_kernel(
724
5.76k
      filter_params_y, subpel_y_qn & SUBPEL_MASK);
725
47.1k
  for (int y = 0; y < h; ++y) {
726
369k
    for (int x = 0; x < w; ++x) {
727
328k
      int32_t res = 0;
728
2.95M
      for (int k = 0; k < filter_params_y->taps; ++k) {
729
2.62M
        res += y_filter[k] * src[(y - fo_vert + k) * src_stride + x];
730
2.62M
      }
731
328k
      dst[y * dst_stride + x] =
732
328k
          clip_pixel_highbd(ROUND_POWER_OF_TWO(res, FILTER_BITS), bd);
733
328k
    }
734
41.3k
  }
735
5.76k
}
736
737
void av1_highbd_convolve_2d_sr_c(const uint16_t *src, int src_stride,
738
                                 uint16_t *dst, int dst_stride, int w, int h,
739
                                 const InterpFilterParams *filter_params_x,
740
                                 const InterpFilterParams *filter_params_y,
741
                                 const int subpel_x_qn, const int subpel_y_qn,
742
8.47k
                                 ConvolveParams *conv_params, int bd) {
743
8.47k
  int16_t im_block[(MAX_SB_SIZE + MAX_FILTER_TAP - 1) * MAX_SB_SIZE];
744
8.47k
  int im_h = h + filter_params_y->taps - 1;
745
8.47k
  int im_stride = w;
746
8.47k
  assert(w <= MAX_SB_SIZE && h <= MAX_SB_SIZE);
747
8.47k
  const int fo_vert = filter_params_y->taps / 2 - 1;
748
8.47k
  const int fo_horiz = filter_params_x->taps / 2 - 1;
749
8.47k
  const int bits =
750
8.47k
      FILTER_BITS * 2 - conv_params->round_0 - conv_params->round_1;
751
8.47k
  assert(bits >= 0);
752
753
  // horizontal filter
754
8.47k
  const uint16_t *src_horiz = src - fo_vert * src_stride;
755
8.47k
  const int16_t *x_filter = av1_get_interp_filter_subpel_kernel(
756
8.47k
      filter_params_x, subpel_x_qn & SUBPEL_MASK);
757
121k
  for (int y = 0; y < im_h; ++y) {
758
807k
    for (int x = 0; x < w; ++x) {
759
694k
      int32_t sum = (1 << (bd + FILTER_BITS - 1));
760
6.25M
      for (int k = 0; k < filter_params_x->taps; ++k) {
761
5.55M
        sum += x_filter[k] * src_horiz[y * src_stride + x - fo_horiz + k];
762
5.55M
      }
763
694k
      assert(filter_params_x->taps > 8 ||
764
694k
             (0 <= sum && sum < (1 << (bd + FILTER_BITS + 1))));
765
694k
      im_block[y * im_stride + x] =
766
694k
          ROUND_POWER_OF_TWO(sum, conv_params->round_0);
767
694k
    }
768
113k
  }
769
770
  // vertical filter
771
8.47k
  int16_t *src_vert = im_block + fo_vert * im_stride;
772
8.47k
  const int16_t *y_filter = av1_get_interp_filter_subpel_kernel(
773
8.47k
      filter_params_y, subpel_y_qn & SUBPEL_MASK);
774
8.47k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
775
62.3k
  for (int y = 0; y < h; ++y) {
776
420k
    for (int x = 0; x < w; ++x) {
777
366k
      int32_t sum = 1 << offset_bits;
778
3.29M
      for (int k = 0; k < filter_params_y->taps; ++k) {
779
2.93M
        sum += y_filter[k] * src_vert[(y - fo_vert + k) * im_stride + x];
780
2.93M
      }
781
366k
      assert(filter_params_y->taps > 8 ||
782
366k
             (0 <= sum && sum < (1 << (offset_bits + 2))));
783
366k
      int32_t res = ROUND_POWER_OF_TWO(sum, conv_params->round_1) -
784
366k
                    ((1 << (offset_bits - conv_params->round_1)) +
785
366k
                     (1 << (offset_bits - conv_params->round_1 - 1)));
786
366k
      dst[y * dst_stride + x] =
787
366k
          clip_pixel_highbd(ROUND_POWER_OF_TWO(res, bits), bd);
788
366k
    }
789
53.8k
  }
790
8.47k
}
791
792
// This function is exactly the same as av1_highbd_convolve_2d_sr_c, and is an
793
// optimized version for intrabc. Use the following 2-tap filter:
794
// DECLARE_ALIGNED(256, static const int16_t,
795
//                 av1_intrabc_bilinear_filter[2 * SUBPEL_SHIFTS]) = {
796
//   128, 0,  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
797
//   64,  64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
798
// };
799
void av1_highbd_convolve_2d_sr_intrabc_c(
800
    const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w,
801
    int h, const InterpFilterParams *filter_params_x,
802
    const InterpFilterParams *filter_params_y, const int subpel_x_qn,
803
21.0k
    const int subpel_y_qn, ConvolveParams *conv_params, int bd) {
804
21.0k
  const int bits =
805
21.0k
      FILTER_BITS * 2 - conv_params->round_0 - conv_params->round_1;
806
21.0k
  assert(bits >= 0);
807
21.0k
  assert(subpel_x_qn == 8);
808
21.0k
  assert(subpel_y_qn == 8);
809
21.0k
  assert(filter_params_x->taps == 2 && filter_params_y->taps == 2);
810
21.0k
  assert((conv_params->round_0 + conv_params->round_1) == 2 * FILTER_BITS);
811
21.0k
  (void)filter_params_x;
812
21.0k
  (void)subpel_x_qn;
813
21.0k
  (void)filter_params_y;
814
21.0k
  (void)subpel_y_qn;
815
21.0k
  (void)conv_params;
816
817
21.0k
  int16_t im_block[(MAX_SB_SIZE + MAX_FILTER_TAP - 1) * MAX_SB_SIZE];
818
21.0k
  int im_h = h + 1;
819
21.0k
  int im_stride = w;
820
21.0k
  assert(w <= MAX_SB_SIZE && h <= MAX_SB_SIZE);
821
822
  // horizontal filter
823
  // explicitly operate for subpel_x_qn = 8.
824
21.0k
  int16_t *im = im_block;
825
182k
  for (int y = 0; y < im_h; ++y) {
826
1.67M
    for (int x = 0; x < w; ++x) {
827
1.51M
      int32_t sum = (1 << (bd + FILTER_BITS - 1)) + 64 * (src[x] + src[x + 1]);
828
1.51M
      assert(0 <= sum && sum < (1 << (bd + FILTER_BITS + 1)));
829
1.51M
      sum = ROUND_POWER_OF_TWO(sum, conv_params->round_0);
830
1.51M
      im[x] = sum;
831
1.51M
    }
832
161k
    src += src_stride;
833
161k
    im += im_stride;
834
161k
  }
835
836
  // vertical filter
837
  // explicitly operate for subpel_y_qn = 8.
838
21.0k
  int16_t *src_vert = im_block;
839
21.0k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
840
161k
  for (int y = 0; y < h; ++y) {
841
1.49M
    for (int x = 0; x < w; ++x) {
842
1.35M
      const int32_t sum =
843
1.35M
          (1 << offset_bits) + 64 * (src_vert[x] + src_vert[im_stride + x]);
844
1.35M
      assert(0 <= sum && sum < (1 << (offset_bits + 2)));
845
1.35M
      const int32_t res = ROUND_POWER_OF_TWO(sum, conv_params->round_1) -
846
1.35M
                          ((1 << (offset_bits - conv_params->round_1)) +
847
1.35M
                           (1 << (offset_bits - conv_params->round_1 - 1)));
848
849
1.35M
      dst[x] = clip_pixel_highbd(ROUND_POWER_OF_TWO(res, bits), bd);
850
1.35M
    }
851
140k
    src_vert += im_stride;
852
140k
    dst += dst_stride;
853
140k
  }
854
21.0k
}
855
856
// This function is exactly the same as av1_highbd_convolve_y_sr_c, and is an
857
// optimized version for intrabc.
858
void av1_highbd_convolve_y_sr_intrabc_c(
859
    const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w,
860
    int h, const InterpFilterParams *filter_params_y, const int subpel_y_qn,
861
19.0k
    int bd) {
862
19.0k
  assert(subpel_y_qn == 8);
863
19.0k
  assert(filter_params_y->taps == 2);
864
19.0k
  (void)filter_params_y;
865
19.0k
  (void)subpel_y_qn;
866
867
  // vertical filter
868
  // explicitly operate for subpel_y_qn = 8.
869
139k
  for (int y = 0; y < h; ++y) {
870
1.15M
    for (int x = 0; x < w; ++x) {
871
1.03M
      const int32_t res = src[x] + src[src_stride + x];
872
1.03M
      dst[x] = clip_pixel_highbd(ROUND_POWER_OF_TWO(res, 1), bd);
873
1.03M
    }
874
120k
    src += src_stride;
875
120k
    dst += dst_stride;
876
120k
  }
877
19.0k
}
878
879
// This function is exactly the same as av1_highbd_convolve_x_sr_c, and is an
880
// optimized version for intrabc.
881
void av1_highbd_convolve_x_sr_intrabc_c(
882
    const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w,
883
    int h, const InterpFilterParams *filter_params_x, const int subpel_x_qn,
884
20.1k
    ConvolveParams *conv_params, int bd) {
885
20.1k
  const int bits = FILTER_BITS - conv_params->round_0;
886
20.1k
  assert(bits >= 0);
887
20.1k
  assert(subpel_x_qn == 8);
888
20.1k
  assert(filter_params_x->taps == 2);
889
20.1k
  assert((conv_params->round_0 + conv_params->round_1) == 2 * FILTER_BITS);
890
20.1k
  (void)filter_params_x;
891
20.1k
  (void)subpel_x_qn;
892
893
  // horizontal filter
894
  // explicitly operate for subpel_x_qn = 8.
895
157k
  for (int y = 0; y < h; ++y) {
896
1.74M
    for (int x = 0; x < w; ++x) {
897
1.60M
      int32_t res = 64 * (src[x] + src[x + 1]);
898
1.60M
      res = ROUND_POWER_OF_TWO(res, conv_params->round_0);
899
1.60M
      dst[x] = clip_pixel_highbd(ROUND_POWER_OF_TWO(res, bits), bd);
900
1.60M
    }
901
137k
    src += src_stride;
902
137k
    dst += dst_stride;
903
137k
  }
904
20.1k
}
905
906
void av1_highbd_dist_wtd_convolve_2d_c(
907
    const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride, int w,
908
    int h, const InterpFilterParams *filter_params_x,
909
    const InterpFilterParams *filter_params_y, const int subpel_x_qn,
910
5.69k
    const int subpel_y_qn, ConvolveParams *conv_params, int bd) {
911
5.69k
  int x, y, k;
912
5.69k
  int16_t im_block[(MAX_SB_SIZE + MAX_FILTER_TAP - 1) * MAX_SB_SIZE];
913
5.69k
  CONV_BUF_TYPE *dst16 = conv_params->dst;
914
5.69k
  int dst16_stride = conv_params->dst_stride;
915
5.69k
  int im_h = h + filter_params_y->taps - 1;
916
5.69k
  int im_stride = w;
917
5.69k
  const int fo_vert = filter_params_y->taps / 2 - 1;
918
5.69k
  const int fo_horiz = filter_params_x->taps / 2 - 1;
919
5.69k
  const int round_bits =
920
5.69k
      2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1;
921
5.69k
  assert(round_bits >= 0);
922
923
  // horizontal filter
924
5.69k
  const uint16_t *src_horiz = src - fo_vert * src_stride;
925
5.69k
  const int16_t *x_filter = av1_get_interp_filter_subpel_kernel(
926
5.69k
      filter_params_x, subpel_x_qn & SUBPEL_MASK);
927
99.6k
  for (y = 0; y < im_h; ++y) {
928
887k
    for (x = 0; x < w; ++x) {
929
794k
      int32_t sum = (1 << (bd + FILTER_BITS - 1));
930
7.14M
      for (k = 0; k < filter_params_x->taps; ++k) {
931
6.35M
        sum += x_filter[k] * src_horiz[y * src_stride + x - fo_horiz + k];
932
6.35M
      }
933
794k
      assert(filter_params_x->taps > 8 ||
934
794k
             (0 <= sum && sum < (1 << (bd + FILTER_BITS + 1))));
935
794k
      (void)bd;
936
794k
      im_block[y * im_stride + x] =
937
794k
          (int16_t)ROUND_POWER_OF_TWO(sum, conv_params->round_0);
938
794k
    }
939
93.9k
  }
940
941
  // vertical filter
942
5.69k
  int16_t *src_vert = im_block + fo_vert * im_stride;
943
5.69k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
944
5.69k
  const int16_t *y_filter = av1_get_interp_filter_subpel_kernel(
945
5.69k
      filter_params_y, subpel_y_qn & SUBPEL_MASK);
946
59.7k
  for (y = 0; y < h; ++y) {
947
524k
    for (x = 0; x < w; ++x) {
948
470k
      int32_t sum = 1 << offset_bits;
949
4.23M
      for (k = 0; k < filter_params_y->taps; ++k) {
950
3.76M
        sum += y_filter[k] * src_vert[(y - fo_vert + k) * im_stride + x];
951
3.76M
      }
952
470k
      assert(filter_params_y->taps > 8 ||
953
470k
             (0 <= sum && sum < (1 << (offset_bits + 2))));
954
470k
      CONV_BUF_TYPE res = ROUND_POWER_OF_TWO(sum, conv_params->round_1);
955
470k
      if (conv_params->do_average) {
956
163k
        int32_t tmp = dst16[y * dst16_stride + x];
957
163k
        if (conv_params->use_dist_wtd_comp_avg) {
958
11.7k
          tmp = tmp * conv_params->fwd_offset + res * conv_params->bck_offset;
959
11.7k
          tmp = tmp >> DIST_PRECISION_BITS;
960
152k
        } else {
961
152k
          tmp += res;
962
152k
          tmp = tmp >> 1;
963
152k
        }
964
163k
        tmp -= (1 << (offset_bits - conv_params->round_1)) +
965
163k
               (1 << (offset_bits - conv_params->round_1 - 1));
966
163k
        dst[y * dst_stride + x] =
967
163k
            clip_pixel_highbd(ROUND_POWER_OF_TWO(tmp, round_bits), bd);
968
306k
      } else {
969
306k
        dst16[y * dst16_stride + x] = res;
970
306k
      }
971
470k
    }
972
54.0k
  }
973
5.69k
}
974
975
void av1_highbd_dist_wtd_convolve_x_c(const uint16_t *src, int src_stride,
976
                                      uint16_t *dst, int dst_stride, int w,
977
                                      int h,
978
                                      const InterpFilterParams *filter_params_x,
979
                                      const int subpel_x_qn,
980
3.57k
                                      ConvolveParams *conv_params, int bd) {
981
3.57k
  CONV_BUF_TYPE *dst16 = conv_params->dst;
982
3.57k
  int dst16_stride = conv_params->dst_stride;
983
3.57k
  const int fo_horiz = filter_params_x->taps / 2 - 1;
984
3.57k
  const int bits = FILTER_BITS - conv_params->round_1;
985
3.57k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
986
3.57k
  const int round_offset = (1 << (offset_bits - conv_params->round_1)) +
987
3.57k
                           (1 << (offset_bits - conv_params->round_1 - 1));
988
3.57k
  const int round_bits =
989
3.57k
      2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1;
990
3.57k
  assert(round_bits >= 0);
991
3.57k
  assert(bits >= 0);
992
  // horizontal filter
993
3.57k
  const int16_t *x_filter = av1_get_interp_filter_subpel_kernel(
994
3.57k
      filter_params_x, subpel_x_qn & SUBPEL_MASK);
995
44.3k
  for (int y = 0; y < h; ++y) {
996
448k
    for (int x = 0; x < w; ++x) {
997
407k
      int32_t res = 0;
998
3.66M
      for (int k = 0; k < filter_params_x->taps; ++k) {
999
3.25M
        res += x_filter[k] * src[y * src_stride + x - fo_horiz + k];
1000
3.25M
      }
1001
407k
      res = (1 << bits) * ROUND_POWER_OF_TWO(res, conv_params->round_0);
1002
407k
      res += round_offset;
1003
1004
407k
      if (conv_params->do_average) {
1005
269k
        int32_t tmp = dst16[y * dst16_stride + x];
1006
269k
        if (conv_params->use_dist_wtd_comp_avg) {
1007
8.83k
          tmp = tmp * conv_params->fwd_offset + res * conv_params->bck_offset;
1008
8.83k
          tmp = tmp >> DIST_PRECISION_BITS;
1009
260k
        } else {
1010
260k
          tmp += res;
1011
260k
          tmp = tmp >> 1;
1012
260k
        }
1013
269k
        tmp -= round_offset;
1014
269k
        dst[y * dst_stride + x] =
1015
269k
            clip_pixel_highbd(ROUND_POWER_OF_TWO(tmp, round_bits), bd);
1016
269k
      } else {
1017
137k
        dst16[y * dst16_stride + x] = res;
1018
137k
      }
1019
407k
    }
1020
40.7k
  }
1021
3.57k
}
1022
1023
void av1_highbd_dist_wtd_convolve_y_c(const uint16_t *src, int src_stride,
1024
                                      uint16_t *dst, int dst_stride, int w,
1025
                                      int h,
1026
                                      const InterpFilterParams *filter_params_y,
1027
                                      const int subpel_y_qn,
1028
4.04k
                                      ConvolveParams *conv_params, int bd) {
1029
4.04k
  CONV_BUF_TYPE *dst16 = conv_params->dst;
1030
4.04k
  int dst16_stride = conv_params->dst_stride;
1031
4.04k
  const int fo_vert = filter_params_y->taps / 2 - 1;
1032
4.04k
  const int bits = FILTER_BITS - conv_params->round_0;
1033
4.04k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
1034
4.04k
  const int round_offset = (1 << (offset_bits - conv_params->round_1)) +
1035
4.04k
                           (1 << (offset_bits - conv_params->round_1 - 1));
1036
4.04k
  const int round_bits =
1037
4.04k
      2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1;
1038
4.04k
  assert(round_bits >= 0);
1039
4.04k
  assert(bits >= 0);
1040
  // vertical filter
1041
4.04k
  const int16_t *y_filter = av1_get_interp_filter_subpel_kernel(
1042
4.04k
      filter_params_y, subpel_y_qn & SUBPEL_MASK);
1043
46.7k
  for (int y = 0; y < h; ++y) {
1044
419k
    for (int x = 0; x < w; ++x) {
1045
376k
      int32_t res = 0;
1046
3.38M
      for (int k = 0; k < filter_params_y->taps; ++k) {
1047
3.01M
        res += y_filter[k] * src[(y - fo_vert + k) * src_stride + x];
1048
3.01M
      }
1049
376k
      res *= (1 << bits);
1050
376k
      res = ROUND_POWER_OF_TWO(res, conv_params->round_1) + round_offset;
1051
1052
376k
      if (conv_params->do_average) {
1053
122k
        int32_t tmp = dst16[y * dst16_stride + x];
1054
122k
        if (conv_params->use_dist_wtd_comp_avg) {
1055
10.4k
          tmp = tmp * conv_params->fwd_offset + res * conv_params->bck_offset;
1056
10.4k
          tmp = tmp >> DIST_PRECISION_BITS;
1057
112k
        } else {
1058
112k
          tmp += res;
1059
112k
          tmp = tmp >> 1;
1060
112k
        }
1061
122k
        tmp -= round_offset;
1062
122k
        dst[y * dst_stride + x] =
1063
122k
            clip_pixel_highbd(ROUND_POWER_OF_TWO(tmp, round_bits), bd);
1064
253k
      } else {
1065
253k
        dst16[y * dst16_stride + x] = res;
1066
253k
      }
1067
376k
    }
1068
42.7k
  }
1069
4.04k
}
1070
1071
void av1_highbd_dist_wtd_convolve_2d_copy_c(const uint16_t *src, int src_stride,
1072
                                            uint16_t *dst, int dst_stride,
1073
                                            int w, int h,
1074
                                            ConvolveParams *conv_params,
1075
13.5k
                                            int bd) {
1076
13.5k
  CONV_BUF_TYPE *dst16 = conv_params->dst;
1077
13.5k
  int dst16_stride = conv_params->dst_stride;
1078
13.5k
  const int bits =
1079
13.5k
      FILTER_BITS * 2 - conv_params->round_1 - conv_params->round_0;
1080
13.5k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
1081
13.5k
  const int round_offset = (1 << (offset_bits - conv_params->round_1)) +
1082
13.5k
                           (1 << (offset_bits - conv_params->round_1 - 1));
1083
13.5k
  assert(bits >= 0);
1084
1085
137k
  for (int y = 0; y < h; ++y) {
1086
1.31M
    for (int x = 0; x < w; ++x) {
1087
1.18M
      CONV_BUF_TYPE res = src[y * src_stride + x] << bits;
1088
1.18M
      res += round_offset;
1089
1.18M
      if (conv_params->do_average) {
1090
375k
        int32_t tmp = dst16[y * dst16_stride + x];
1091
375k
        if (conv_params->use_dist_wtd_comp_avg) {
1092
239k
          tmp = tmp * conv_params->fwd_offset + res * conv_params->bck_offset;
1093
239k
          tmp = tmp >> DIST_PRECISION_BITS;
1094
239k
        } else {
1095
136k
          tmp += res;
1096
136k
          tmp = tmp >> 1;
1097
136k
        }
1098
375k
        tmp -= round_offset;
1099
375k
        dst[y * dst_stride + x] =
1100
375k
            clip_pixel_highbd(ROUND_POWER_OF_TWO(tmp, bits), bd);
1101
811k
      } else {
1102
811k
        dst16[y * dst16_stride + x] = res;
1103
811k
      }
1104
1.18M
    }
1105
124k
  }
1106
13.5k
}
1107
1108
void av1_highbd_convolve_2d_scale_c(const uint16_t *src, int src_stride,
1109
                                    uint16_t *dst, int dst_stride, int w, int h,
1110
                                    const InterpFilterParams *filter_params_x,
1111
                                    const InterpFilterParams *filter_params_y,
1112
                                    const int subpel_x_qn, const int x_step_qn,
1113
                                    const int subpel_y_qn, const int y_step_qn,
1114
9.85k
                                    ConvolveParams *conv_params, int bd) {
1115
9.85k
  int16_t im_block[(2 * MAX_SB_SIZE + MAX_FILTER_TAP) * MAX_SB_SIZE];
1116
9.85k
  int im_h = (((h - 1) * y_step_qn + subpel_y_qn) >> SCALE_SUBPEL_BITS) +
1117
9.85k
             filter_params_y->taps;
1118
9.85k
  int im_stride = w;
1119
9.85k
  const int fo_vert = filter_params_y->taps / 2 - 1;
1120
9.85k
  const int fo_horiz = filter_params_x->taps / 2 - 1;
1121
9.85k
  CONV_BUF_TYPE *dst16 = conv_params->dst;
1122
9.85k
  const int dst16_stride = conv_params->dst_stride;
1123
9.85k
  const int bits =
1124
9.85k
      FILTER_BITS * 2 - conv_params->round_0 - conv_params->round_1;
1125
9.85k
  assert(bits >= 0);
1126
  // horizontal filter
1127
9.85k
  const uint16_t *src_horiz = src - fo_vert * src_stride;
1128
151k
  for (int y = 0; y < im_h; ++y) {
1129
141k
    int x_qn = subpel_x_qn;
1130
1.78M
    for (int x = 0; x < w; ++x, x_qn += x_step_qn) {
1131
1.64M
      const uint16_t *const src_x = &src_horiz[(x_qn >> SCALE_SUBPEL_BITS)];
1132
1.64M
      const int x_filter_idx = (x_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS;
1133
1.64M
      assert(x_filter_idx < SUBPEL_SHIFTS);
1134
1.64M
      const int16_t *x_filter =
1135
1.64M
          av1_get_interp_filter_subpel_kernel(filter_params_x, x_filter_idx);
1136
1.64M
      int32_t sum = (1 << (bd + FILTER_BITS - 1));
1137
14.8M
      for (int k = 0; k < filter_params_x->taps; ++k) {
1138
13.1M
        sum += x_filter[k] * src_x[k - fo_horiz];
1139
13.1M
      }
1140
1.64M
      assert(filter_params_x->taps > 8 ||
1141
1.64M
             (0 <= sum && sum < (1 << (bd + FILTER_BITS + 1))));
1142
1.64M
      im_block[y * im_stride + x] =
1143
1.64M
          (int16_t)ROUND_POWER_OF_TWO(sum, conv_params->round_0);
1144
1.64M
    }
1145
141k
    src_horiz += src_stride;
1146
141k
  }
1147
1148
  // vertical filter
1149
9.85k
  int16_t *src_vert = im_block + fo_vert * im_stride;
1150
9.85k
  const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0;
1151
80.4k
  for (int x = 0; x < w; ++x) {
1152
70.5k
    int y_qn = subpel_y_qn;
1153
1.20M
    for (int y = 0; y < h; ++y, y_qn += y_step_qn) {
1154
1.13M
      const int16_t *src_y = &src_vert[(y_qn >> SCALE_SUBPEL_BITS) * im_stride];
1155
1.13M
      const int y_filter_idx = (y_qn & SCALE_SUBPEL_MASK) >> SCALE_EXTRA_BITS;
1156
1.13M
      assert(y_filter_idx < SUBPEL_SHIFTS);
1157
1.13M
      const int16_t *y_filter =
1158
1.13M
          av1_get_interp_filter_subpel_kernel(filter_params_y, y_filter_idx);
1159
1.13M
      int32_t sum = 1 << offset_bits;
1160
10.2M
      for (int k = 0; k < filter_params_y->taps; ++k) {
1161
9.10M
        sum += y_filter[k] * src_y[(k - fo_vert) * im_stride];
1162
9.10M
      }
1163
1.13M
      assert(filter_params_y->taps > 8 ||
1164
1.13M
             (0 <= sum && sum < (1 << (offset_bits + 2))));
1165
1.13M
      CONV_BUF_TYPE res = ROUND_POWER_OF_TWO(sum, conv_params->round_1);
1166
1.13M
      if (conv_params->is_compound) {
1167
246k
        if (conv_params->do_average) {
1168
93.3k
          int32_t tmp = dst16[y * dst16_stride + x];
1169
93.3k
          if (conv_params->use_dist_wtd_comp_avg) {
1170
38.5k
            tmp = tmp * conv_params->fwd_offset + res * conv_params->bck_offset;
1171
38.5k
            tmp = tmp >> DIST_PRECISION_BITS;
1172
54.8k
          } else {
1173
54.8k
            tmp += res;
1174
54.8k
            tmp = tmp >> 1;
1175
54.8k
          }
1176
          /* Subtract round offset and convolve round */
1177
93.3k
          tmp = tmp - ((1 << (offset_bits - conv_params->round_1)) +
1178
93.3k
                       (1 << (offset_bits - conv_params->round_1 - 1)));
1179
93.3k
          dst[y * dst_stride + x] =
1180
93.3k
              clip_pixel_highbd(ROUND_POWER_OF_TWO(tmp, bits), bd);
1181
153k
        } else {
1182
153k
          dst16[y * dst16_stride + x] = res;
1183
153k
        }
1184
892k
      } else {
1185
        /* Subtract round offset and convolve round */
1186
892k
        int32_t tmp = res - ((1 << (offset_bits - conv_params->round_1)) +
1187
892k
                             (1 << (offset_bits - conv_params->round_1 - 1)));
1188
892k
        dst[y * dst_stride + x] =
1189
892k
            clip_pixel_highbd(ROUND_POWER_OF_TWO(tmp, bits), bd);
1190
892k
      }
1191
1.13M
    }
1192
70.5k
    src_vert++;
1193
70.5k
  }
1194
9.85k
}
1195
1196
static void highbd_convolve_2d_facade_compound(
1197
    const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride,
1198
    const int w, const int h, const InterpFilterParams *filter_params_x,
1199
    const InterpFilterParams *filter_params_y, const int subpel_x_qn,
1200
26.8k
    const int subpel_y_qn, ConvolveParams *conv_params, int bd) {
1201
26.8k
  const bool need_x = subpel_x_qn != 0;
1202
26.8k
  const bool need_y = subpel_y_qn != 0;
1203
26.8k
  if (!need_x && !need_y) {
1204
13.5k
    av1_highbd_dist_wtd_convolve_2d_copy(src, src_stride, dst, dst_stride, w, h,
1205
13.5k
                                         conv_params, bd);
1206
13.5k
  } else if (need_x && !need_y) {
1207
3.57k
    av1_highbd_dist_wtd_convolve_x(src, src_stride, dst, dst_stride, w, h,
1208
3.57k
                                   filter_params_x, subpel_x_qn, conv_params,
1209
3.57k
                                   bd);
1210
9.74k
  } else if (!need_x && need_y) {
1211
4.04k
    av1_highbd_dist_wtd_convolve_y(src, src_stride, dst, dst_stride, w, h,
1212
4.04k
                                   filter_params_y, subpel_y_qn, conv_params,
1213
4.04k
                                   bd);
1214
5.69k
  } else {
1215
5.69k
    assert(need_x && need_y);
1216
5.69k
    av1_highbd_dist_wtd_convolve_2d(src, src_stride, dst, dst_stride, w, h,
1217
5.69k
                                    filter_params_x, filter_params_y,
1218
5.69k
                                    subpel_x_qn, subpel_y_qn, conv_params, bd);
1219
5.69k
  }
1220
26.8k
}
1221
1222
static void highbd_convolve_2d_facade_single(
1223
    const uint16_t *src, int src_stride, uint16_t *dst, int dst_stride,
1224
    const int w, const int h, const InterpFilterParams *filter_params_x,
1225
    const InterpFilterParams *filter_params_y, const int subpel_x_qn,
1226
112k
    const int subpel_y_qn, ConvolveParams *conv_params, int bd) {
1227
112k
  const bool need_x = subpel_x_qn != 0;
1228
112k
  const bool need_y = subpel_y_qn != 0;
1229
1230
112k
  if (!need_x && !need_y) {
1231
89.6k
    aom_highbd_convolve_copy(src, src_stride, dst, dst_stride, w, h);
1232
89.6k
  } else if (need_x && !need_y) {
1233
8.24k
    av1_highbd_convolve_x_sr(src, src_stride, dst, dst_stride, w, h,
1234
8.24k
                             filter_params_x, subpel_x_qn, conv_params, bd);
1235
14.2k
  } else if (!need_x && need_y) {
1236
5.76k
    av1_highbd_convolve_y_sr(src, src_stride, dst, dst_stride, w, h,
1237
5.76k
                             filter_params_y, subpel_y_qn, bd);
1238
8.47k
  } else {
1239
8.47k
    assert(need_x && need_y);
1240
8.47k
    av1_highbd_convolve_2d_sr(src, src_stride, dst, dst_stride, w, h,
1241
8.47k
                              filter_params_x, filter_params_y, subpel_x_qn,
1242
8.47k
                              subpel_y_qn, conv_params, bd);
1243
8.47k
  }
1244
112k
}
1245
1246
void av1_highbd_convolve_2d_facade(const uint8_t *src8, int src_stride,
1247
                                   uint8_t *dst8, int dst_stride, int w, int h,
1248
                                   const InterpFilterParams *interp_filters[2],
1249
                                   const int subpel_x_qn, int x_step_q4,
1250
                                   const int subpel_y_qn, int y_step_q4,
1251
                                   int scaled, ConvolveParams *conv_params,
1252
209k
                                   int bd) {
1253
209k
  (void)x_step_q4;
1254
209k
  (void)y_step_q4;
1255
209k
  (void)dst_stride;
1256
209k
  const uint16_t *src = CONVERT_TO_SHORTPTR(src8);
1257
1258
209k
  const InterpFilterParams *filter_params_x = interp_filters[0];
1259
209k
  const InterpFilterParams *filter_params_y = interp_filters[1];
1260
1261
209k
  uint16_t *dst = CONVERT_TO_SHORTPTR(dst8);
1262
  // 2-tap filter indicates that it is for IntraBC.
1263
209k
  if (filter_params_x->taps == 2 || filter_params_y->taps == 2) {
1264
132k
    assert(filter_params_x->taps == 2 && filter_params_y->taps == 2);
1265
132k
    assert(!scaled);
1266
132k
    if (subpel_x_qn && subpel_y_qn) {
1267
21.0k
      av1_highbd_convolve_2d_sr_intrabc_c(
1268
21.0k
          src, src_stride, dst, dst_stride, w, h, filter_params_x,
1269
21.0k
          filter_params_y, subpel_x_qn, subpel_y_qn, conv_params, bd);
1270
21.0k
      return;
1271
111k
    } else if (subpel_x_qn) {
1272
20.1k
      av1_highbd_convolve_x_sr_intrabc_c(src, src_stride, dst, dst_stride, w, h,
1273
20.1k
                                         filter_params_x, subpel_x_qn,
1274
20.1k
                                         conv_params, bd);
1275
20.1k
      return;
1276
91.3k
    } else if (subpel_y_qn) {
1277
19.0k
      av1_highbd_convolve_y_sr_intrabc_c(src, src_stride, dst, dst_stride, w, h,
1278
19.0k
                                         filter_params_y, subpel_y_qn, bd);
1279
19.0k
      return;
1280
19.0k
    }
1281
132k
  }
1282
1283
148k
  if (scaled) {
1284
9.85k
    if (conv_params->is_compound) {
1285
1.88k
      assert(conv_params->dst != NULL);
1286
1.88k
    }
1287
9.85k
    av1_highbd_convolve_2d_scale(src, src_stride, dst, dst_stride, w, h,
1288
9.85k
                                 filter_params_x, filter_params_y, subpel_x_qn,
1289
9.85k
                                 x_step_q4, subpel_y_qn, y_step_q4, conv_params,
1290
9.85k
                                 bd);
1291
139k
  } else if (conv_params->is_compound) {
1292
26.8k
    highbd_convolve_2d_facade_compound(
1293
26.8k
        src, src_stride, dst, dst_stride, w, h, filter_params_x,
1294
26.8k
        filter_params_y, subpel_x_qn, subpel_y_qn, conv_params, bd);
1295
112k
  } else {
1296
112k
    highbd_convolve_2d_facade_single(src, src_stride, dst, dst_stride, w, h,
1297
112k
                                     filter_params_x, filter_params_y,
1298
112k
                                     subpel_x_qn, subpel_y_qn, conv_params, bd);
1299
112k
  }
1300
148k
}
1301
#endif  // CONFIG_AV1_HIGHBITDEPTH
1302
1303
// Note: Fixed size intermediate buffers, place limits on parameters
1304
// of some functions. 2d filtering proceeds in 2 steps:
1305
//   (1) Interpolate horizontally into an intermediate buffer, temp.
1306
//   (2) Interpolate temp vertically to derive the sub-pixel result.
1307
// Deriving the maximum number of rows in the temp buffer (135):
1308
// --Smallest scaling factor is x1/2 ==> y_step_q4 = 32 (Normative).
1309
// --Largest block size is 128x128 pixels.
1310
// --128 rows in the downscaled frame span a distance of (128 - 1) * 32 in the
1311
//   original frame (in 1/16th pixel units).
1312
// --Must round-up because block may be located at sub-pixel position.
1313
// --Require an additional SUBPEL_TAPS rows for the 8-tap filter tails.
1314
// --((128 - 1) * 32 + 15) >> 4 + 8 = 263.
1315
#define WIENER_MAX_EXT_SIZE 263
1316
1317
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
1318
11.9M
static inline int horz_scalar_product(const uint8_t *a, const int16_t *b) {
1319
11.9M
  int sum = 0;
1320
107M
  for (int k = 0; k < SUBPEL_TAPS; ++k) sum += a[k] * b[k];
1321
11.9M
  return sum;
1322
11.9M
}
1323
1324
#if CONFIG_AV1_HIGHBITDEPTH
1325
static inline int highbd_horz_scalar_product(const uint16_t *a,
1326
38.2M
                                             const int16_t *b) {
1327
38.2M
  int sum = 0;
1328
344M
  for (int k = 0; k < SUBPEL_TAPS; ++k) sum += a[k] * b[k];
1329
38.2M
  return sum;
1330
38.2M
}
1331
#endif
1332
1333
static inline int highbd_vert_scalar_product(const uint16_t *a,
1334
                                             ptrdiff_t a_stride,
1335
45.1M
                                             const int16_t *b) {
1336
45.1M
  int sum = 0;
1337
403M
  for (int k = 0; k < SUBPEL_TAPS; ++k) sum += a[k * a_stride] * b[k];
1338
45.1M
  return sum;
1339
45.1M
}
1340
1341
48.0k
static const InterpKernel *get_filter_base(const int16_t *filter) {
1342
  // NOTE: This assumes that the filter table is 256-byte aligned.
1343
  // TODO(agrange) Modify to make independent of table alignment.
1344
48.0k
  return (const InterpKernel *)(((intptr_t)filter) & ~((intptr_t)0xFF));
1345
48.0k
}
1346
1347
48.0k
static int get_filter_offset(const int16_t *f, const InterpKernel *base) {
1348
48.0k
  return (int)((const InterpKernel *)(intptr_t)f - base);
1349
48.0k
}
1350
1351
static void convolve_add_src_horiz_hip(const uint8_t *src, ptrdiff_t src_stride,
1352
                                       uint16_t *dst, ptrdiff_t dst_stride,
1353
                                       const InterpKernel *x_filters, int x0_q4,
1354
                                       int x_step_q4, int w, int h,
1355
6.53k
                                       int round0_bits) {
1356
6.53k
  const int bd = 8;
1357
6.53k
  src -= SUBPEL_TAPS / 2 - 1;
1358
260k
  for (int y = 0; y < h; ++y) {
1359
254k
    int x_q4 = x0_q4;
1360
12.1M
    for (int x = 0; x < w; ++x) {
1361
11.9M
      const uint8_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
1362
11.9M
      const int16_t *const x_filter = x_filters[x_q4 & SUBPEL_MASK];
1363
11.9M
      const int rounding = ((int)src_x[SUBPEL_TAPS / 2 - 1] << FILTER_BITS) +
1364
11.9M
                           (1 << (bd + FILTER_BITS - 1));
1365
11.9M
      const int sum = horz_scalar_product(src_x, x_filter) + rounding;
1366
11.9M
      dst[x] = (uint16_t)clamp(ROUND_POWER_OF_TWO(sum, round0_bits), 0,
1367
11.9M
                               WIENER_CLAMP_LIMIT(round0_bits, bd) - 1);
1368
11.9M
      x_q4 += x_step_q4;
1369
11.9M
    }
1370
254k
    src += src_stride;
1371
254k
    dst += dst_stride;
1372
254k
  }
1373
6.53k
}
1374
1375
static void convolve_add_src_vert_hip(const uint16_t *src, ptrdiff_t src_stride,
1376
                                      uint8_t *dst, ptrdiff_t dst_stride,
1377
                                      const InterpKernel *y_filters, int y0_q4,
1378
                                      int y_step_q4, int w, int h,
1379
6.53k
                                      int round1_bits) {
1380
6.53k
  const int bd = 8;
1381
6.53k
  src -= src_stride * (SUBPEL_TAPS / 2 - 1);
1382
1383
277k
  for (int x = 0; x < w; ++x) {
1384
270k
    int y_q4 = y0_q4;
1385
11.5M
    for (int y = 0; y < h; ++y) {
1386
11.2M
      const uint16_t *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
1387
11.2M
      const int16_t *const y_filter = y_filters[y_q4 & SUBPEL_MASK];
1388
11.2M
      const int rounding =
1389
11.2M
          ((int)src_y[(SUBPEL_TAPS / 2 - 1) * src_stride] << FILTER_BITS) -
1390
11.2M
          (1 << (bd + round1_bits - 1));
1391
11.2M
      const int sum =
1392
11.2M
          highbd_vert_scalar_product(src_y, src_stride, y_filter) + rounding;
1393
11.2M
      dst[y * dst_stride] = clip_pixel(ROUND_POWER_OF_TWO(sum, round1_bits));
1394
11.2M
      y_q4 += y_step_q4;
1395
11.2M
    }
1396
270k
    ++src;
1397
270k
    ++dst;
1398
270k
  }
1399
6.53k
}
1400
1401
void av1_wiener_convolve_add_src_c(const uint8_t *src, ptrdiff_t src_stride,
1402
                                   uint8_t *dst, ptrdiff_t dst_stride,
1403
                                   const int16_t *filter_x, int x_step_q4,
1404
                                   const int16_t *filter_y, int y_step_q4,
1405
                                   int w, int h,
1406
6.54k
                                   const WienerConvolveParams *conv_params) {
1407
6.54k
  const InterpKernel *const filters_x = get_filter_base(filter_x);
1408
6.54k
  const int x0_q4 = get_filter_offset(filter_x, filters_x);
1409
1410
6.54k
  const InterpKernel *const filters_y = get_filter_base(filter_y);
1411
6.54k
  const int y0_q4 = get_filter_offset(filter_y, filters_y);
1412
1413
6.54k
  uint16_t temp[WIENER_MAX_EXT_SIZE * MAX_SB_SIZE];
1414
6.54k
  const int intermediate_height =
1415
6.54k
      (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS - 1;
1416
6.54k
  memset(temp + (intermediate_height * MAX_SB_SIZE), 0, MAX_SB_SIZE);
1417
1418
6.54k
  assert(w <= MAX_SB_SIZE);
1419
6.54k
  assert(h <= MAX_SB_SIZE);
1420
6.54k
  assert(y_step_q4 <= 32);
1421
6.54k
  assert(x_step_q4 <= 32);
1422
1423
6.54k
  convolve_add_src_horiz_hip(src - src_stride * (SUBPEL_TAPS / 2 - 1),
1424
6.54k
                             src_stride, temp, MAX_SB_SIZE, filters_x, x0_q4,
1425
6.54k
                             x_step_q4, w, intermediate_height,
1426
6.54k
                             conv_params->round_0);
1427
6.54k
  convolve_add_src_vert_hip(temp + MAX_SB_SIZE * (SUBPEL_TAPS / 2 - 1),
1428
6.54k
                            MAX_SB_SIZE, dst, dst_stride, filters_y, y0_q4,
1429
6.54k
                            y_step_q4, w, h, conv_params->round_1);
1430
6.54k
}
1431
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
1432
1433
#if CONFIG_AV1_HIGHBITDEPTH
1434
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
1435
static void highbd_convolve_add_src_horiz_hip(
1436
    const uint8_t *src8, ptrdiff_t src_stride, uint16_t *dst,
1437
    ptrdiff_t dst_stride, const InterpKernel *x_filters, int x0_q4,
1438
17.4k
    int x_step_q4, int w, int h, int round0_bits, int bd) {
1439
17.4k
  const int extraprec_clamp_limit = WIENER_CLAMP_LIMIT(round0_bits, bd);
1440
17.4k
  uint16_t *src = CONVERT_TO_SHORTPTR(src8);
1441
17.4k
  src -= SUBPEL_TAPS / 2 - 1;
1442
842k
  for (int y = 0; y < h; ++y) {
1443
825k
    int x_q4 = x0_q4;
1444
39.0M
    for (int x = 0; x < w; ++x) {
1445
38.2M
      const uint16_t *const src_x = &src[x_q4 >> SUBPEL_BITS];
1446
38.2M
      const int16_t *const x_filter = x_filters[x_q4 & SUBPEL_MASK];
1447
38.2M
      const int rounding = ((int)src_x[SUBPEL_TAPS / 2 - 1] << FILTER_BITS) +
1448
38.2M
                           (1 << (bd + FILTER_BITS - 1));
1449
38.2M
      const int sum = highbd_horz_scalar_product(src_x, x_filter) + rounding;
1450
38.2M
      dst[x] = (uint16_t)clamp(ROUND_POWER_OF_TWO(sum, round0_bits), 0,
1451
38.2M
                               extraprec_clamp_limit - 1);
1452
38.2M
      x_q4 += x_step_q4;
1453
38.2M
    }
1454
825k
    src += src_stride;
1455
825k
    dst += dst_stride;
1456
825k
  }
1457
17.4k
}
1458
1459
static void highbd_convolve_add_src_vert_hip(
1460
    const uint16_t *src, ptrdiff_t src_stride, uint8_t *dst8,
1461
    ptrdiff_t dst_stride, const InterpKernel *y_filters, int y0_q4,
1462
17.4k
    int y_step_q4, int w, int h, int round1_bits, int bd) {
1463
17.4k
  uint16_t *dst = CONVERT_TO_SHORTPTR(dst8);
1464
17.4k
  src -= src_stride * (SUBPEL_TAPS / 2 - 1);
1465
772k
  for (int x = 0; x < w; ++x) {
1466
755k
    int y_q4 = y0_q4;
1467
36.6M
    for (int y = 0; y < h; ++y) {
1468
35.8M
      const uint16_t *src_y = &src[(y_q4 >> SUBPEL_BITS) * src_stride];
1469
35.8M
      const int16_t *const y_filter = y_filters[y_q4 & SUBPEL_MASK];
1470
35.8M
      const int rounding =
1471
35.8M
          ((int)src_y[(SUBPEL_TAPS / 2 - 1) * src_stride] << FILTER_BITS) -
1472
35.8M
          (1 << (bd + round1_bits - 1));
1473
35.8M
      const int sum =
1474
35.8M
          highbd_vert_scalar_product(src_y, src_stride, y_filter) + rounding;
1475
35.8M
      dst[y * dst_stride] =
1476
35.8M
          clip_pixel_highbd(ROUND_POWER_OF_TWO(sum, round1_bits), bd);
1477
35.8M
      y_q4 += y_step_q4;
1478
35.8M
    }
1479
755k
    ++src;
1480
755k
    ++dst;
1481
755k
  }
1482
17.4k
}
1483
1484
void av1_highbd_wiener_convolve_add_src_c(
1485
    const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
1486
    ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4,
1487
    const int16_t *filter_y, int y_step_q4, int w, int h,
1488
17.4k
    const WienerConvolveParams *conv_params, int bd) {
1489
17.4k
  const InterpKernel *const filters_x = get_filter_base(filter_x);
1490
17.4k
  const int x0_q4 = get_filter_offset(filter_x, filters_x);
1491
1492
17.4k
  const InterpKernel *const filters_y = get_filter_base(filter_y);
1493
17.4k
  const int y0_q4 = get_filter_offset(filter_y, filters_y);
1494
1495
17.4k
  uint16_t temp[WIENER_MAX_EXT_SIZE * MAX_SB_SIZE];
1496
17.4k
  const int intermediate_height =
1497
17.4k
      (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS;
1498
1499
17.4k
  assert(w <= MAX_SB_SIZE);
1500
17.4k
  assert(h <= MAX_SB_SIZE);
1501
17.4k
  assert(y_step_q4 <= 32);
1502
17.4k
  assert(x_step_q4 <= 32);
1503
17.4k
  assert(bd + FILTER_BITS - conv_params->round_0 + 2 <= 16);
1504
1505
17.4k
  highbd_convolve_add_src_horiz_hip(src - src_stride * (SUBPEL_TAPS / 2 - 1),
1506
17.4k
                                    src_stride, temp, MAX_SB_SIZE, filters_x,
1507
17.4k
                                    x0_q4, x_step_q4, w, intermediate_height,
1508
17.4k
                                    conv_params->round_0, bd);
1509
17.4k
  highbd_convolve_add_src_vert_hip(
1510
17.4k
      temp + MAX_SB_SIZE * (SUBPEL_TAPS / 2 - 1), MAX_SB_SIZE, dst, dst_stride,
1511
17.4k
      filters_y, y0_q4, y_step_q4, w, h, conv_params->round_1, bd);
1512
17.4k
}
1513
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
1514
#endif  // CONFIG_AV1_HIGHBITDEPTH