Coverage Report

Created: 2026-09-14 07:15

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aom/av1/common/reconinter.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 <stdio.h>
14
#include <limits.h>
15
16
#include "config/aom_config.h"
17
#include "config/aom_dsp_rtcd.h"
18
#include "config/aom_scale_rtcd.h"
19
20
#include "aom/aom_integer.h"
21
#include "aom_dsp/blend.h"
22
23
#include "av1/common/av1_common_int.h"
24
#include "av1/common/blockd.h"
25
#include "av1/common/mvref_common.h"
26
#include "av1/common/obmc.h"
27
#include "av1/common/reconinter.h"
28
#include "av1/common/reconintra.h"
29
30
// This function will determine whether or not to create a warped
31
// prediction.
32
static int allow_warp(const MB_MODE_INFO *const mbmi,
33
                      const WarpTypesAllowed *const warp_types,
34
                      const WarpedMotionParams *const gm_params,
35
                      int build_for_obmc, const struct scale_factors *const sf,
36
205k
                      WarpedMotionParams *final_warp_params) {
37
  // Note: As per the spec, we must test the fixed point scales here, which are
38
  // at a higher precision (1 << 14) than the xs and ys in subpel_params (that
39
  // have 1 << 10 precision).
40
205k
  if (av1_is_scaled(sf)) return 0;
41
42
197k
  if (final_warp_params != NULL) *final_warp_params = default_warp_params;
43
44
197k
  if (build_for_obmc) return 0;
45
46
197k
  if (warp_types->local_warp_allowed && !mbmi->wm_params.invalid) {
47
6.88k
    if (final_warp_params != NULL) *final_warp_params = mbmi->wm_params;
48
6.88k
    return 1;
49
190k
  } else if (warp_types->global_warp_allowed && !gm_params->invalid) {
50
14.2k
    if (final_warp_params != NULL) *final_warp_params = *gm_params;
51
14.2k
    return 1;
52
14.2k
  }
53
54
176k
  return 0;
55
197k
}
56
57
void av1_init_warp_params(InterPredParams *inter_pred_params,
58
                          const WarpTypesAllowed *warp_types, int ref,
59
451k
                          const MACROBLOCKD *xd, const MB_MODE_INFO *mi) {
60
451k
  if (inter_pred_params->block_height < 8 || inter_pred_params->block_width < 8)
61
225k
    return;
62
63
226k
  if (xd->cur_frame_force_integer_mv) return;
64
65
205k
  if (allow_warp(mi, warp_types, &xd->global_motion[mi->ref_frame[ref]], 0,
66
205k
                 inter_pred_params->scale_factors,
67
205k
                 &inter_pred_params->warp_params)) {
68
#if CONFIG_REALTIME_ONLY && !CONFIG_AV1_DECODER
69
    aom_internal_error(xd->error_info, AOM_CODEC_UNSUP_FEATURE,
70
                       "Warped motion is disabled in realtime only build.");
71
#endif  // CONFIG_REALTIME_ONLY && !CONFIG_AV1_DECODER
72
21.1k
    inter_pred_params->mode = WARP_PRED;
73
21.1k
  }
74
205k
}
75
76
void av1_make_inter_predictor(const uint8_t *src, int src_stride, uint8_t *dst,
77
                              int dst_stride,
78
                              InterPredParams *inter_pred_params,
79
468k
                              const SubpelParams *subpel_params) {
80
468k
  assert(IMPLIES(inter_pred_params->conv_params.is_compound,
81
468k
                 inter_pred_params->conv_params.dst != NULL));
82
83
468k
  if (inter_pred_params->mode == TRANSLATION_PRED) {
84
447k
#if CONFIG_AV1_HIGHBITDEPTH
85
447k
    if (inter_pred_params->use_hbd_buf) {
86
218k
      highbd_inter_predictor(src, src_stride, dst, dst_stride, subpel_params,
87
218k
                             inter_pred_params->block_width,
88
218k
                             inter_pred_params->block_height,
89
218k
                             &inter_pred_params->conv_params,
90
218k
                             inter_pred_params->interp_filter_params,
91
218k
                             inter_pred_params->bit_depth);
92
228k
    } else {
93
228k
      inter_predictor(src, src_stride, dst, dst_stride, subpel_params,
94
228k
                      inter_pred_params->block_width,
95
228k
                      inter_pred_params->block_height,
96
228k
                      &inter_pred_params->conv_params,
97
228k
                      inter_pred_params->interp_filter_params);
98
228k
    }
99
#else
100
    inter_predictor(src, src_stride, dst, dst_stride, subpel_params,
101
                    inter_pred_params->block_width,
102
                    inter_pred_params->block_height,
103
                    &inter_pred_params->conv_params,
104
                    inter_pred_params->interp_filter_params);
105
#endif
106
447k
  }
107
21.1k
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
108
  // TODO(jingning): av1_warp_plane() can be further cleaned up.
109
21.1k
  else if (inter_pred_params->mode == WARP_PRED) {
110
21.1k
    av1_warp_plane(
111
21.1k
        &inter_pred_params->warp_params, inter_pred_params->use_hbd_buf,
112
21.1k
        inter_pred_params->bit_depth, inter_pred_params->ref_frame_buf.buf0,
113
21.1k
        inter_pred_params->ref_frame_buf.width,
114
21.1k
        inter_pred_params->ref_frame_buf.height,
115
21.1k
        inter_pred_params->ref_frame_buf.stride, dst,
116
21.1k
        inter_pred_params->pix_col, inter_pred_params->pix_row,
117
21.1k
        inter_pred_params->block_width, inter_pred_params->block_height,
118
21.1k
        dst_stride, inter_pred_params->subsampling_x,
119
21.1k
        inter_pred_params->subsampling_y, &inter_pred_params->conv_params);
120
21.1k
  }
121
0
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
122
0
  else {
123
0
    assert(0 && "Unsupported inter_pred_params->mode");
124
0
  }
125
468k
}
126
127
/* clang-format off */
128
DECLARE_ALIGNED(16, static const uint8_t,
129
                wedge_signflip_lookup[BLOCK_SIZES_ALL][MAX_WEDGE_TYPES]) = {
130
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
131
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
132
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
133
  { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, },
134
  { 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, },
135
  { 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, },
136
  { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, },
137
  { 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, },
138
  { 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, },
139
  { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, },
140
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
141
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
142
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
143
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
144
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
145
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
146
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
147
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
148
  { 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, },
149
  { 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, },
150
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
151
  { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, },  // not used
152
};
153
/* clang-format on */
154
155
// The wedge / inter-intra mask buffers used to be writable .data populated
156
// by init_all_wedge_masks() at runtime, which gave every process its own
157
// private COW copy. They are now precomputed at codegen time (see
158
// tools/gen_wedge_masks_data.py) and included here as const data so they
159
// live in .rdata and are shared across processes.
160
//
161
// `wedge_masks` stores byte offsets into `wedge_mask_buf` (not pointers) to
162
// avoid loader relocations that would otherwise dirty the .rdata pages.
163
#include "av1/common/wedge_masks_data.inc"
164
165
static const wedge_code_type wedge_codebook_16_hgtw[16] = {
166
  { WEDGE_OBLIQUE27, 4, 4 },  { WEDGE_OBLIQUE63, 4, 4 },
167
  { WEDGE_OBLIQUE117, 4, 4 }, { WEDGE_OBLIQUE153, 4, 4 },
168
  { WEDGE_HORIZONTAL, 4, 2 }, { WEDGE_HORIZONTAL, 4, 4 },
169
  { WEDGE_HORIZONTAL, 4, 6 }, { WEDGE_VERTICAL, 4, 4 },
170
  { WEDGE_OBLIQUE27, 4, 2 },  { WEDGE_OBLIQUE27, 4, 6 },
171
  { WEDGE_OBLIQUE153, 4, 2 }, { WEDGE_OBLIQUE153, 4, 6 },
172
  { WEDGE_OBLIQUE63, 2, 4 },  { WEDGE_OBLIQUE63, 6, 4 },
173
  { WEDGE_OBLIQUE117, 2, 4 }, { WEDGE_OBLIQUE117, 6, 4 },
174
};
175
176
static const wedge_code_type wedge_codebook_16_hltw[16] = {
177
  { WEDGE_OBLIQUE27, 4, 4 },  { WEDGE_OBLIQUE63, 4, 4 },
178
  { WEDGE_OBLIQUE117, 4, 4 }, { WEDGE_OBLIQUE153, 4, 4 },
179
  { WEDGE_VERTICAL, 2, 4 },   { WEDGE_VERTICAL, 4, 4 },
180
  { WEDGE_VERTICAL, 6, 4 },   { WEDGE_HORIZONTAL, 4, 4 },
181
  { WEDGE_OBLIQUE27, 4, 2 },  { WEDGE_OBLIQUE27, 4, 6 },
182
  { WEDGE_OBLIQUE153, 4, 2 }, { WEDGE_OBLIQUE153, 4, 6 },
183
  { WEDGE_OBLIQUE63, 2, 4 },  { WEDGE_OBLIQUE63, 6, 4 },
184
  { WEDGE_OBLIQUE117, 2, 4 }, { WEDGE_OBLIQUE117, 6, 4 },
185
};
186
187
static const wedge_code_type wedge_codebook_16_heqw[16] = {
188
  { WEDGE_OBLIQUE27, 4, 4 },  { WEDGE_OBLIQUE63, 4, 4 },
189
  { WEDGE_OBLIQUE117, 4, 4 }, { WEDGE_OBLIQUE153, 4, 4 },
190
  { WEDGE_HORIZONTAL, 4, 2 }, { WEDGE_HORIZONTAL, 4, 6 },
191
  { WEDGE_VERTICAL, 2, 4 },   { WEDGE_VERTICAL, 6, 4 },
192
  { WEDGE_OBLIQUE27, 4, 2 },  { WEDGE_OBLIQUE27, 4, 6 },
193
  { WEDGE_OBLIQUE153, 4, 2 }, { WEDGE_OBLIQUE153, 4, 6 },
194
  { WEDGE_OBLIQUE63, 2, 4 },  { WEDGE_OBLIQUE63, 6, 4 },
195
  { WEDGE_OBLIQUE117, 2, 4 }, { WEDGE_OBLIQUE117, 6, 4 },
196
};
197
198
const wedge_params_type av1_wedge_params_lookup[BLOCK_SIZES_ALL] = {
199
  { 0, NULL, NULL, NULL },
200
  { 0, NULL, NULL, NULL },
201
  { 0, NULL, NULL, NULL },
202
  { MAX_WEDGE_TYPES, wedge_codebook_16_heqw, wedge_signflip_lookup[BLOCK_8X8],
203
    wedge_masks[BLOCK_8X8] },
204
  { MAX_WEDGE_TYPES, wedge_codebook_16_hgtw, wedge_signflip_lookup[BLOCK_8X16],
205
    wedge_masks[BLOCK_8X16] },
206
  { MAX_WEDGE_TYPES, wedge_codebook_16_hltw, wedge_signflip_lookup[BLOCK_16X8],
207
    wedge_masks[BLOCK_16X8] },
208
  { MAX_WEDGE_TYPES, wedge_codebook_16_heqw, wedge_signflip_lookup[BLOCK_16X16],
209
    wedge_masks[BLOCK_16X16] },
210
  { MAX_WEDGE_TYPES, wedge_codebook_16_hgtw, wedge_signflip_lookup[BLOCK_16X32],
211
    wedge_masks[BLOCK_16X32] },
212
  { MAX_WEDGE_TYPES, wedge_codebook_16_hltw, wedge_signflip_lookup[BLOCK_32X16],
213
    wedge_masks[BLOCK_32X16] },
214
  { MAX_WEDGE_TYPES, wedge_codebook_16_heqw, wedge_signflip_lookup[BLOCK_32X32],
215
    wedge_masks[BLOCK_32X32] },
216
  { 0, NULL, NULL, NULL },
217
  { 0, NULL, NULL, NULL },
218
  { 0, NULL, NULL, NULL },
219
  { 0, NULL, NULL, NULL },
220
  { 0, NULL, NULL, NULL },
221
  { 0, NULL, NULL, NULL },
222
  { 0, NULL, NULL, NULL },
223
  { 0, NULL, NULL, NULL },
224
  { MAX_WEDGE_TYPES, wedge_codebook_16_hgtw, wedge_signflip_lookup[BLOCK_8X32],
225
    wedge_masks[BLOCK_8X32] },
226
  { MAX_WEDGE_TYPES, wedge_codebook_16_hltw, wedge_signflip_lookup[BLOCK_32X8],
227
    wedge_masks[BLOCK_32X8] },
228
  { 0, NULL, NULL, NULL },
229
  { 0, NULL, NULL, NULL },
230
};
231
232
const uint8_t *av1_get_contiguous_soft_mask(int8_t wedge_index,
233
                                            int8_t wedge_sign,
234
4.95k
                                            BLOCK_SIZE sb_type) {
235
4.95k
  return wedge_mask_buf +
236
4.95k
         av1_wedge_params_lookup[sb_type].masks[wedge_sign][wedge_index];
237
4.95k
}
238
239
const uint8_t *av1_get_compound_type_mask(
240
4.07k
    const INTERINTER_COMPOUND_DATA *const comp_data, BLOCK_SIZE sb_type) {
241
4.07k
  (void)sb_type;
242
4.07k
  switch (comp_data->type) {
243
3.03k
    case COMPOUND_WEDGE:
244
3.03k
      return av1_get_contiguous_soft_mask(comp_data->wedge_index,
245
3.03k
                                          comp_data->wedge_sign, sb_type);
246
1.04k
    default: return comp_data->seg_mask;
247
4.07k
  }
248
4.07k
}
249
250
static inline void diffwtd_mask_d16(uint8_t *mask, int which_inverse,
251
                                    int mask_base, const CONV_BUF_TYPE *src0,
252
                                    int src0_stride, const CONV_BUF_TYPE *src1,
253
                                    int src1_stride, int h, int w,
254
397
                                    ConvolveParams *conv_params, int bd) {
255
397
  int round =
256
397
      2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1 + (bd - 8);
257
397
  int i, j, m, diff;
258
5.83k
  for (i = 0; i < h; ++i) {
259
141k
    for (j = 0; j < w; ++j) {
260
136k
      diff = abs(src0[i * src0_stride + j] - src1[i * src1_stride + j]);
261
136k
      diff = ROUND_POWER_OF_TWO(diff, round);
262
136k
      m = clamp(mask_base + (diff / DIFF_FACTOR), 0, AOM_BLEND_A64_MAX_ALPHA);
263
136k
      mask[i * w + j] = which_inverse ? AOM_BLEND_A64_MAX_ALPHA - m : m;
264
136k
    }
265
5.44k
  }
266
397
}
267
268
void av1_build_compound_diffwtd_mask_d16_c(
269
    uint8_t *mask, DIFFWTD_MASK_TYPE mask_type, const CONV_BUF_TYPE *src0,
270
    int src0_stride, const CONV_BUF_TYPE *src1, int src1_stride, int h, int w,
271
397
    ConvolveParams *conv_params, int bd) {
272
397
  switch (mask_type) {
273
269
    case DIFFWTD_38:
274
269
      diffwtd_mask_d16(mask, 0, 38, src0, src0_stride, src1, src1_stride, h, w,
275
269
                       conv_params, bd);
276
269
      break;
277
128
    case DIFFWTD_38_INV:
278
128
      diffwtd_mask_d16(mask, 1, 38, src0, src0_stride, src1, src1_stride, h, w,
279
128
                       conv_params, bd);
280
128
      break;
281
0
    default: assert(0);
282
397
  }
283
397
}
284
285
static inline void diffwtd_mask(uint8_t *mask, int which_inverse, int mask_base,
286
                                const uint8_t *src0, int src0_stride,
287
                                const uint8_t *src1, int src1_stride, int h,
288
0
                                int w) {
289
0
  int i, j, m, diff;
290
0
  for (i = 0; i < h; ++i) {
291
0
    for (j = 0; j < w; ++j) {
292
0
      diff =
293
0
          abs((int)src0[i * src0_stride + j] - (int)src1[i * src1_stride + j]);
294
0
      m = clamp(mask_base + (diff / DIFF_FACTOR), 0, AOM_BLEND_A64_MAX_ALPHA);
295
0
      mask[i * w + j] = which_inverse ? AOM_BLEND_A64_MAX_ALPHA - m : m;
296
0
    }
297
0
  }
298
0
}
299
300
void av1_build_compound_diffwtd_mask_c(uint8_t *mask,
301
                                       DIFFWTD_MASK_TYPE mask_type,
302
                                       const uint8_t *src0, int src0_stride,
303
                                       const uint8_t *src1, int src1_stride,
304
0
                                       int h, int w) {
305
0
  switch (mask_type) {
306
0
    case DIFFWTD_38:
307
0
      diffwtd_mask(mask, 0, 38, src0, src0_stride, src1, src1_stride, h, w);
308
0
      break;
309
0
    case DIFFWTD_38_INV:
310
0
      diffwtd_mask(mask, 1, 38, src0, src0_stride, src1, src1_stride, h, w);
311
0
      break;
312
0
    default: assert(0);
313
0
  }
314
0
}
315
316
#if CONFIG_AV1_HIGHBITDEPTH
317
static AOM_FORCE_INLINE void diffwtd_mask_highbd(
318
    uint8_t *mask, int which_inverse, int mask_base, const uint16_t *src0,
319
    int src0_stride, const uint16_t *src1, int src1_stride, int h, int w,
320
0
    const unsigned int bd) {
321
0
  assert(bd >= 8);
322
0
  if (bd == 8) {
323
0
    if (which_inverse) {
324
0
      for (int i = 0; i < h; ++i) {
325
0
        for (int j = 0; j < w; ++j) {
326
0
          int diff = abs((int)src0[j] - (int)src1[j]) / DIFF_FACTOR;
327
0
          unsigned int m = negative_to_zero(mask_base + diff);
328
0
          m = AOMMIN(m, AOM_BLEND_A64_MAX_ALPHA);
329
0
          mask[j] = AOM_BLEND_A64_MAX_ALPHA - m;
330
0
        }
331
0
        src0 += src0_stride;
332
0
        src1 += src1_stride;
333
0
        mask += w;
334
0
      }
335
0
    } else {
336
0
      for (int i = 0; i < h; ++i) {
337
0
        for (int j = 0; j < w; ++j) {
338
0
          int diff = abs((int)src0[j] - (int)src1[j]) / DIFF_FACTOR;
339
0
          unsigned int m = negative_to_zero(mask_base + diff);
340
0
          m = AOMMIN(m, AOM_BLEND_A64_MAX_ALPHA);
341
0
          mask[j] = m;
342
0
        }
343
0
        src0 += src0_stride;
344
0
        src1 += src1_stride;
345
0
        mask += w;
346
0
      }
347
0
    }
348
0
  } else {
349
0
    const unsigned int bd_shift = bd - 8;
350
0
    if (which_inverse) {
351
0
      for (int i = 0; i < h; ++i) {
352
0
        for (int j = 0; j < w; ++j) {
353
0
          int diff =
354
0
              (abs((int)src0[j] - (int)src1[j]) >> bd_shift) / DIFF_FACTOR;
355
0
          unsigned int m = negative_to_zero(mask_base + diff);
356
0
          m = AOMMIN(m, AOM_BLEND_A64_MAX_ALPHA);
357
0
          mask[j] = AOM_BLEND_A64_MAX_ALPHA - m;
358
0
        }
359
0
        src0 += src0_stride;
360
0
        src1 += src1_stride;
361
0
        mask += w;
362
0
      }
363
0
    } else {
364
0
      for (int i = 0; i < h; ++i) {
365
0
        for (int j = 0; j < w; ++j) {
366
0
          int diff =
367
0
              (abs((int)src0[j] - (int)src1[j]) >> bd_shift) / DIFF_FACTOR;
368
0
          unsigned int m = negative_to_zero(mask_base + diff);
369
0
          m = AOMMIN(m, AOM_BLEND_A64_MAX_ALPHA);
370
0
          mask[j] = m;
371
0
        }
372
0
        src0 += src0_stride;
373
0
        src1 += src1_stride;
374
0
        mask += w;
375
0
      }
376
0
    }
377
0
  }
378
0
}
379
380
void av1_build_compound_diffwtd_mask_highbd_c(
381
    uint8_t *mask, DIFFWTD_MASK_TYPE mask_type, const uint8_t *src0,
382
    int src0_stride, const uint8_t *src1, int src1_stride, int h, int w,
383
0
    int bd) {
384
0
  switch (mask_type) {
385
0
    case DIFFWTD_38:
386
0
      diffwtd_mask_highbd(mask, 0, 38, CONVERT_TO_SHORTPTR(src0), src0_stride,
387
0
                          CONVERT_TO_SHORTPTR(src1), src1_stride, h, w, bd);
388
0
      break;
389
0
    case DIFFWTD_38_INV:
390
0
      diffwtd_mask_highbd(mask, 1, 38, CONVERT_TO_SHORTPTR(src0), src0_stride,
391
0
                          CONVERT_TO_SHORTPTR(src1), src1_stride, h, w, bd);
392
0
      break;
393
0
    default: assert(0);
394
0
  }
395
0
}
396
#endif  // CONFIG_AV1_HIGHBITDEPTH
397
398
/* clang-format off */
399
#if CONFIG_AV1_HIGHBITDEPTH
400
static const uint8_t ii_weights1d[MAX_SB_SIZE] = {
401
  60, 58, 56, 54, 52, 50, 48, 47, 45, 44, 42, 41, 39, 38, 37, 35, 34, 33, 32,
402
  31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 22, 21, 20, 19, 19, 18, 18, 17, 16,
403
  16, 15, 15, 14, 14, 13, 13, 12, 12, 12, 11, 11, 10, 10, 10,  9,  9,  9,  8,
404
  8,  8,  8,  7,  7,  7,  7,  6,  6,  6,  6,  6,  5,  5,  5,  5,  5,  4,  4,
405
  4,  4,  4,  4,  4,  4,  3,  3,  3,  3,  3,  3,  3,  3,  3,  2,  2,  2,  2,
406
  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  1,  1,  1,  1,  1,  1,  1,  1,
407
  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1
408
};
409
static const uint8_t ii_size_scales[BLOCK_SIZES_ALL] = {
410
    32, 16, 16, 16, 8, 8, 8, 4,
411
    4,  4,  2,  2,  2, 1, 1, 1,
412
    8,  8,  4,  4,  2, 2
413
};
414
#endif  // CONFIG_AV1_HIGHBITDEPTH
415
/* clang-format on */
416
417
#if CONFIG_AV1_HIGHBITDEPTH
418
// Used at runtime by combine_interintra_highbd() below for a per-call
419
// stack-allocated mask. The block-size-major precomputed
420
// `smooth_interintra_mask_buf` only covers block sizes with bw,bh <=
421
// MAX_WEDGE_SIZE; the highbd path may need larger sizes.
422
static inline void build_smooth_interintra_mask(uint8_t *mask, int stride,
423
                                                BLOCK_SIZE plane_bsize,
424
2.34k
                                                INTERINTRA_MODE mode) {
425
2.34k
  int i, j;
426
2.34k
  const int bw = block_size_wide[plane_bsize];
427
2.34k
  const int bh = block_size_high[plane_bsize];
428
2.34k
  const int size_scale = ii_size_scales[plane_bsize];
429
430
2.34k
  switch (mode) {
431
700
    case II_V_PRED:
432
7.98k
      for (i = 0; i < bh; ++i) {
433
7.28k
        memset(mask, ii_weights1d[i * size_scale], bw * sizeof(mask[0]));
434
7.28k
        mask += stride;
435
7.28k
      }
436
700
      break;
437
438
322
    case II_H_PRED:
439
4.46k
      for (i = 0; i < bh; ++i) {
440
57.7k
        for (j = 0; j < bw; ++j) mask[j] = ii_weights1d[j * size_scale];
441
4.14k
        mask += stride;
442
4.14k
      }
443
322
      break;
444
445
1.28k
    case II_SMOOTH_PRED:
446
11.6k
      for (i = 0; i < bh; ++i) {
447
66.4k
        for (j = 0; j < bw; ++j)
448
56.0k
          mask[j] = ii_weights1d[(i < j ? i : j) * size_scale];
449
10.3k
        mask += stride;
450
10.3k
      }
451
1.28k
      break;
452
453
37
    case II_DC_PRED:
454
37
    default:
455
757
      for (i = 0; i < bh; ++i) {
456
720
        memset(mask, 32, bw * sizeof(mask[0]));
457
720
        mask += stride;
458
720
      }
459
37
      break;
460
2.34k
  }
461
2.34k
}
462
#endif  // CONFIG_AV1_HIGHBITDEPTH
463
464
// No-op now that the wedge / inter-intra mask buffers are precomputed at
465
// codegen time and stored in `.rdata`. The symbol is kept exported because
466
// decoder.c, encoder.c, and unit tests still call it.
467
20.3k
void av1_init_wedge_masks(void) {}
468
469
static inline void build_masked_compound_no_round(
470
    uint8_t *dst, int dst_stride, const CONV_BUF_TYPE *src0, int src0_stride,
471
    const CONV_BUF_TYPE *src1, int src1_stride,
472
    const INTERINTER_COMPOUND_DATA *const comp_data, BLOCK_SIZE sb_type, int h,
473
4.07k
    int w, InterPredParams *inter_pred_params) {
474
4.07k
  const int ssy = inter_pred_params->subsampling_y;
475
4.07k
  const int ssx = inter_pred_params->subsampling_x;
476
4.07k
  const uint8_t *mask = av1_get_compound_type_mask(comp_data, sb_type);
477
4.07k
  const int mask_stride = block_size_wide[sb_type];
478
4.07k
#if CONFIG_AV1_HIGHBITDEPTH
479
4.07k
  if (inter_pred_params->use_hbd_buf) {
480
2.49k
    aom_highbd_blend_a64_d16_mask(dst, dst_stride, src0, src0_stride, src1,
481
2.49k
                                  src1_stride, mask, mask_stride, w, h, ssx,
482
2.49k
                                  ssy, &inter_pred_params->conv_params,
483
2.49k
                                  inter_pred_params->bit_depth);
484
2.49k
  } else {
485
1.57k
    aom_lowbd_blend_a64_d16_mask(dst, dst_stride, src0, src0_stride, src1,
486
1.57k
                                 src1_stride, mask, mask_stride, w, h, ssx, ssy,
487
1.57k
                                 &inter_pred_params->conv_params);
488
1.57k
  }
489
#else
490
  aom_lowbd_blend_a64_d16_mask(dst, dst_stride, src0, src0_stride, src1,
491
                               src1_stride, mask, mask_stride, w, h, ssx, ssy,
492
                               &inter_pred_params->conv_params);
493
#endif
494
4.07k
}
495
496
void av1_make_masked_inter_predictor(const uint8_t *pre, int pre_stride,
497
                                     uint8_t *dst, int dst_stride,
498
                                     InterPredParams *inter_pred_params,
499
4.07k
                                     const SubpelParams *subpel_params) {
500
4.07k
  const INTERINTER_COMPOUND_DATA *comp_data = &inter_pred_params->mask_comp;
501
4.07k
  BLOCK_SIZE sb_type = inter_pred_params->sb_type;
502
503
  // We're going to call av1_make_inter_predictor to generate a prediction into
504
  // a temporary buffer, then will blend that temporary buffer with that from
505
  // the other reference.
506
4.07k
  DECLARE_ALIGNED(32, uint8_t, tmp_buf[2 * MAX_SB_SQUARE]);
507
4.07k
  uint8_t *tmp_dst =
508
4.07k
      inter_pred_params->use_hbd_buf ? CONVERT_TO_BYTEPTR(tmp_buf) : tmp_buf;
509
510
4.07k
  const int tmp_buf_stride = MAX_SB_SIZE;
511
4.07k
  CONV_BUF_TYPE *org_dst = inter_pred_params->conv_params.dst;
512
4.07k
  int org_dst_stride = inter_pred_params->conv_params.dst_stride;
513
4.07k
  CONV_BUF_TYPE *tmp_buf16 = (CONV_BUF_TYPE *)tmp_buf;
514
4.07k
  inter_pred_params->conv_params.dst = tmp_buf16;
515
4.07k
  inter_pred_params->conv_params.dst_stride = tmp_buf_stride;
516
4.07k
  assert(inter_pred_params->conv_params.do_average == 0);
517
518
  // This will generate a prediction in tmp_buf for the second reference
519
4.07k
  av1_make_inter_predictor(pre, pre_stride, tmp_dst, MAX_SB_SIZE,
520
4.07k
                           inter_pred_params, subpel_params);
521
522
4.07k
  if (!inter_pred_params->conv_params.plane &&
523
1.53k
      comp_data->type == COMPOUND_DIFFWTD) {
524
397
    av1_build_compound_diffwtd_mask_d16(
525
397
        comp_data->seg_mask, comp_data->mask_type, org_dst, org_dst_stride,
526
397
        tmp_buf16, tmp_buf_stride, inter_pred_params->block_height,
527
397
        inter_pred_params->block_width, &inter_pred_params->conv_params,
528
397
        inter_pred_params->bit_depth);
529
397
  }
530
4.07k
  build_masked_compound_no_round(
531
4.07k
      dst, dst_stride, org_dst, org_dst_stride, tmp_buf16, tmp_buf_stride,
532
4.07k
      comp_data, sb_type, inter_pred_params->block_height,
533
4.07k
      inter_pred_params->block_width, inter_pred_params);
534
4.07k
}
535
536
void av1_dist_wtd_comp_weight_assign(const AV1_COMMON *cm,
537
                                     const MB_MODE_INFO *mbmi, int *fwd_offset,
538
                                     int *bck_offset,
539
                                     int *use_dist_wtd_comp_avg,
540
461k
                                     int is_compound) {
541
461k
  assert(fwd_offset != NULL && bck_offset != NULL);
542
461k
  if (!is_compound || mbmi->compound_idx) {
543
445k
    *fwd_offset = 8;
544
445k
    *bck_offset = 8;
545
445k
    *use_dist_wtd_comp_avg = 0;
546
445k
    return;
547
445k
  }
548
549
16.5k
  *use_dist_wtd_comp_avg = 1;
550
16.5k
  const RefCntBuffer *const bck_buf = get_ref_frame_buf(cm, mbmi->ref_frame[0]);
551
16.5k
  const RefCntBuffer *const fwd_buf = get_ref_frame_buf(cm, mbmi->ref_frame[1]);
552
16.5k
  const int cur_frame_index = cm->cur_frame->order_hint;
553
16.5k
  int bck_frame_index = 0, fwd_frame_index = 0;
554
555
16.5k
  if (bck_buf != NULL) bck_frame_index = bck_buf->order_hint;
556
16.5k
  if (fwd_buf != NULL) fwd_frame_index = fwd_buf->order_hint;
557
558
16.5k
  int d0 = clamp(abs(get_relative_dist(&cm->seq_params->order_hint_info,
559
16.5k
                                       fwd_frame_index, cur_frame_index)),
560
16.5k
                 0, MAX_FRAME_DISTANCE);
561
16.5k
  int d1 = clamp(abs(get_relative_dist(&cm->seq_params->order_hint_info,
562
16.5k
                                       cur_frame_index, bck_frame_index)),
563
16.5k
                 0, MAX_FRAME_DISTANCE);
564
565
16.5k
  const int order = d0 <= d1;
566
567
16.5k
  if (d0 == 0 || d1 == 0) {
568
2.44k
    *fwd_offset = quant_dist_lookup_table[3][order];
569
2.44k
    *bck_offset = quant_dist_lookup_table[3][1 - order];
570
2.44k
    return;
571
2.44k
  }
572
573
14.1k
  int i;
574
21.9k
  for (i = 0; i < 3; ++i) {
575
20.2k
    int c0 = quant_dist_weight[i][order];
576
20.2k
    int c1 = quant_dist_weight[i][!order];
577
20.2k
    int d0_c0 = d0 * c0;
578
20.2k
    int d1_c1 = d1 * c1;
579
20.2k
    if ((d0 > d1 && d0_c0 < d1_c1) || (d0 <= d1 && d0_c0 > d1_c1)) break;
580
20.2k
  }
581
582
14.1k
  *fwd_offset = quant_dist_lookup_table[i][order];
583
14.1k
  *bck_offset = quant_dist_lookup_table[i][1 - order];
584
14.1k
}
585
586
void av1_setup_dst_planes(struct macroblockd_plane *planes, BLOCK_SIZE bsize,
587
                          const YV12_BUFFER_CONFIG *src, int mi_row, int mi_col,
588
10.5M
                          const int plane_start, const int plane_end) {
589
  // We use AOMMIN(num_planes, MAX_MB_PLANE) instead of num_planes to quiet
590
  // the static analysis warnings.
591
41.3M
  for (int i = plane_start; i < AOMMIN(plane_end, MAX_MB_PLANE); ++i) {
592
30.7M
    struct macroblockd_plane *const pd = &planes[i];
593
30.7M
    const int is_uv = i > 0;
594
30.7M
    setup_pred_plane(&pd->dst, bsize, src->buffers[i], src->crop_widths[is_uv],
595
30.7M
                     src->crop_heights[is_uv], src->strides[is_uv], mi_row,
596
30.7M
                     mi_col, NULL, pd->subsampling_x, pd->subsampling_y);
597
30.7M
  }
598
10.5M
}
599
600
void av1_setup_pre_planes(MACROBLOCKD *xd, int idx,
601
                          const YV12_BUFFER_CONFIG *src, int mi_row, int mi_col,
602
                          const struct scale_factors *sf,
603
68.6k
                          const int num_planes) {
604
68.6k
  if (src != NULL) {
605
    // We use AOMMIN(num_planes, MAX_MB_PLANE) instead of num_planes to quiet
606
    // the static analysis warnings.
607
243k
    for (int i = 0; i < AOMMIN(num_planes, MAX_MB_PLANE); ++i) {
608
174k
      struct macroblockd_plane *const pd = &xd->plane[i];
609
174k
      const int is_uv = i > 0;
610
174k
      setup_pred_plane(&pd->pre[idx], xd->mi[0]->bsize, src->buffers[i],
611
174k
                       src->crop_widths[is_uv], src->crop_heights[is_uv],
612
174k
                       src->strides[is_uv], mi_row, mi_col, sf,
613
174k
                       pd->subsampling_x, pd->subsampling_y);
614
174k
    }
615
68.6k
  }
616
68.6k
}
617
618
// obmc_mask_N[overlap_position]
619
static const uint8_t obmc_mask_1[1] = { 64 };
620
DECLARE_ALIGNED(2, static const uint8_t, obmc_mask_2[2]) = { 45, 64 };
621
622
DECLARE_ALIGNED(4, static const uint8_t, obmc_mask_4[4]) = { 39, 50, 59, 64 };
623
624
static const uint8_t obmc_mask_8[8] = { 36, 42, 48, 53, 57, 61, 64, 64 };
625
626
static const uint8_t obmc_mask_16[16] = { 34, 37, 40, 43, 46, 49, 52, 54,
627
                                          56, 58, 60, 61, 64, 64, 64, 64 };
628
629
static const uint8_t obmc_mask_32[32] = { 33, 35, 36, 38, 40, 41, 43, 44,
630
                                          45, 47, 48, 50, 51, 52, 53, 55,
631
                                          56, 57, 58, 59, 60, 60, 61, 62,
632
                                          64, 64, 64, 64, 64, 64, 64, 64 };
633
634
static const uint8_t obmc_mask_64[64] = {
635
  33, 34, 35, 35, 36, 37, 38, 39, 40, 40, 41, 42, 43, 44, 44, 44,
636
  45, 46, 47, 47, 48, 49, 50, 51, 51, 51, 52, 52, 53, 54, 55, 56,
637
  56, 56, 57, 57, 58, 58, 59, 60, 60, 60, 60, 60, 61, 62, 62, 62,
638
  62, 62, 63, 63, 63, 63, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
639
};
640
641
10.8k
const uint8_t *av1_get_obmc_mask(int length) {
642
10.8k
  switch (length) {
643
0
    case 1: return obmc_mask_1;
644
512
    case 2: return obmc_mask_2;
645
8.27k
    case 4: return obmc_mask_4;
646
1.93k
    case 8: return obmc_mask_8;
647
83
    case 16: return obmc_mask_16;
648
14
    case 32: return obmc_mask_32;
649
0
    case 64: return obmc_mask_64;
650
0
    default: assert(0); return NULL;
651
10.8k
  }
652
10.8k
}
653
654
static inline void increment_int_ptr(MACROBLOCKD *xd, int rel_mi_row,
655
                                     int rel_mi_col, uint8_t op_mi_size,
656
                                     int dir, MB_MODE_INFO *mi, void *fun_ctxt,
657
30.2k
                                     const int num_planes) {
658
30.2k
  (void)xd;
659
30.2k
  (void)rel_mi_row;
660
30.2k
  (void)rel_mi_col;
661
30.2k
  (void)op_mi_size;
662
30.2k
  (void)dir;
663
30.2k
  (void)mi;
664
30.2k
  ++*(uint8_t *)fun_ctxt;
665
30.2k
  (void)num_planes;
666
30.2k
}
667
668
84.2k
void av1_count_overlappable_neighbors(const AV1_COMMON *cm, MACROBLOCKD *xd) {
669
84.2k
  MB_MODE_INFO *mbmi = xd->mi[0];
670
671
84.2k
  mbmi->overlappable_neighbors = 0;
672
673
84.2k
  if (!is_motion_variation_allowed_bsize(mbmi->bsize)) return;
674
675
40.1k
  foreach_overlappable_nb_above(cm, xd, INT_MAX, increment_int_ptr,
676
40.1k
                                &mbmi->overlappable_neighbors);
677
40.1k
  if (mbmi->overlappable_neighbors) return;
678
24.5k
  foreach_overlappable_nb_left(cm, xd, INT_MAX, increment_int_ptr,
679
24.5k
                               &mbmi->overlappable_neighbors);
680
24.5k
}
681
682
// HW does not support < 4x4 prediction. To limit the bandwidth requirement, if
683
// block-size of current plane is smaller than 8x8, always only blend with the
684
// left neighbor(s) (skip blending with the above side).
685
#define DISABLE_CHROMA_U8X8_OBMC 0  // 0: one-sided obmc; 1: disable
686
687
int av1_skip_u4x4_pred_in_obmc(BLOCK_SIZE bsize,
688
22.5k
                               const struct macroblockd_plane *pd, int dir) {
689
22.5k
  assert(is_motion_variation_allowed_bsize(bsize));
690
691
22.5k
  const BLOCK_SIZE bsize_plane =
692
22.5k
      get_plane_block_size(bsize, pd->subsampling_x, pd->subsampling_y);
693
22.5k
  switch (bsize_plane) {
694
#if DISABLE_CHROMA_U8X8_OBMC
695
    case BLOCK_4X4:
696
    case BLOCK_8X4:
697
    case BLOCK_4X8: return 1;
698
#else
699
12
    case BLOCK_4X4:
700
12
    case BLOCK_8X4:
701
1.89k
    case BLOCK_4X8: return dir == 0;
702
0
#endif
703
20.6k
    default: return 0;
704
22.5k
  }
705
22.5k
}
706
707
#if CONFIG_AV1_DECODER
708
3.91k
static void modify_neighbor_predictor_for_obmc(MB_MODE_INFO *mbmi) {
709
3.91k
  mbmi->ref_frame[1] = NONE_FRAME;
710
3.91k
  mbmi->interinter_comp.type = COMPOUND_AVERAGE;
711
3.91k
}
712
#endif  // CONFIG_AV1_DECODER
713
714
struct obmc_inter_pred_ctxt {
715
  uint8_t **adjacent;
716
  int *adjacent_stride;
717
};
718
719
static inline void build_obmc_inter_pred_above(
720
    MACROBLOCKD *xd, int rel_mi_row, int rel_mi_col, uint8_t op_mi_size,
721
1.53k
    int dir, MB_MODE_INFO *above_mi, void *fun_ctxt, const int num_planes) {
722
1.53k
  (void)above_mi;
723
1.53k
  (void)rel_mi_row;
724
1.53k
  (void)dir;
725
1.53k
  struct obmc_inter_pred_ctxt *ctxt = (struct obmc_inter_pred_ctxt *)fun_ctxt;
726
1.53k
  const BLOCK_SIZE bsize = xd->mi[0]->bsize;
727
1.53k
  const int overlap =
728
1.53k
      AOMMIN(block_size_high[bsize], block_size_high[BLOCK_64X64]) >> 1;
729
730
5.80k
  for (int plane = 0; plane < num_planes; ++plane) {
731
4.26k
    const struct macroblockd_plane *pd = &xd->plane[plane];
732
4.26k
    const int bw = (op_mi_size * MI_SIZE) >> pd->subsampling_x;
733
4.26k
    const int bh = overlap >> pd->subsampling_y;
734
4.26k
    const int plane_col = (rel_mi_col * MI_SIZE) >> pd->subsampling_x;
735
736
4.26k
    if (av1_skip_u4x4_pred_in_obmc(bsize, pd, 0)) continue;
737
738
3.83k
    const int dst_stride = pd->dst.stride;
739
3.83k
    uint8_t *const dst = &pd->dst.buf[plane_col];
740
3.83k
    const int tmp_stride = ctxt->adjacent_stride[plane];
741
3.83k
    const uint8_t *const tmp = &ctxt->adjacent[plane][plane_col];
742
3.83k
    const uint8_t *const mask = av1_get_obmc_mask(bh);
743
3.83k
#if CONFIG_AV1_HIGHBITDEPTH
744
3.83k
    const int is_hbd = is_cur_buf_hbd(xd);
745
3.83k
    if (is_hbd)
746
2.58k
      aom_highbd_blend_a64_vmask(dst, dst_stride, dst, dst_stride, tmp,
747
2.58k
                                 tmp_stride, mask, bw, bh, xd->bd);
748
1.25k
    else
749
1.25k
      aom_blend_a64_vmask(dst, dst_stride, dst, dst_stride, tmp, tmp_stride,
750
1.25k
                          mask, bw, bh);
751
#else
752
    aom_blend_a64_vmask(dst, dst_stride, dst, dst_stride, tmp, tmp_stride, mask,
753
                        bw, bh);
754
#endif
755
3.83k
  }
756
1.53k
}
757
758
static inline void build_obmc_inter_pred_left(
759
    MACROBLOCKD *xd, int rel_mi_row, int rel_mi_col, uint8_t op_mi_size,
760
2.37k
    int dir, MB_MODE_INFO *left_mi, void *fun_ctxt, const int num_planes) {
761
2.37k
  (void)left_mi;
762
2.37k
  (void)rel_mi_col;
763
2.37k
  (void)dir;
764
2.37k
  struct obmc_inter_pred_ctxt *ctxt = (struct obmc_inter_pred_ctxt *)fun_ctxt;
765
2.37k
  const BLOCK_SIZE bsize = xd->mi[0]->bsize;
766
2.37k
  const int overlap =
767
2.37k
      AOMMIN(block_size_wide[bsize], block_size_wide[BLOCK_64X64]) >> 1;
768
769
9.36k
  for (int plane = 0; plane < num_planes; ++plane) {
770
6.98k
    const struct macroblockd_plane *pd = &xd->plane[plane];
771
6.98k
    const int bw = overlap >> pd->subsampling_x;
772
6.98k
    const int bh = (op_mi_size * MI_SIZE) >> pd->subsampling_y;
773
6.98k
    const int plane_row = (rel_mi_row * MI_SIZE) >> pd->subsampling_y;
774
775
6.98k
    if (av1_skip_u4x4_pred_in_obmc(bsize, pd, 1)) continue;
776
777
6.98k
    const int dst_stride = pd->dst.stride;
778
6.98k
    uint8_t *const dst = &pd->dst.buf[plane_row * dst_stride];
779
6.98k
    const int tmp_stride = ctxt->adjacent_stride[plane];
780
6.98k
    const uint8_t *const tmp = &ctxt->adjacent[plane][plane_row * tmp_stride];
781
6.98k
    const uint8_t *const mask = av1_get_obmc_mask(bw);
782
783
6.98k
#if CONFIG_AV1_HIGHBITDEPTH
784
6.98k
    const int is_hbd = is_cur_buf_hbd(xd);
785
6.98k
    if (is_hbd)
786
3.37k
      aom_highbd_blend_a64_hmask(dst, dst_stride, dst, dst_stride, tmp,
787
3.37k
                                 tmp_stride, mask, bw, bh, xd->bd);
788
3.61k
    else
789
3.61k
      aom_blend_a64_hmask(dst, dst_stride, dst, dst_stride, tmp, tmp_stride,
790
3.61k
                          mask, bw, bh);
791
#else
792
    aom_blend_a64_hmask(dst, dst_stride, dst, dst_stride, tmp, tmp_stride, mask,
793
                        bw, bh);
794
#endif
795
6.98k
  }
796
2.37k
}
797
798
// This function combines motion compensated predictions that are generated by
799
// top/left neighboring blocks' inter predictors with the regular inter
800
// prediction. We assume the original prediction (bmc) is stored in
801
// xd->plane[].dst.buf
802
void av1_build_obmc_inter_prediction(const AV1_COMMON *cm, MACROBLOCKD *xd,
803
                                     uint8_t *above[MAX_MB_PLANE],
804
                                     int above_stride[MAX_MB_PLANE],
805
                                     uint8_t *left[MAX_MB_PLANE],
806
3.41k
                                     int left_stride[MAX_MB_PLANE]) {
807
3.41k
  const BLOCK_SIZE bsize = xd->mi[0]->bsize;
808
809
  // handle above row
810
3.41k
  struct obmc_inter_pred_ctxt ctxt_above = { above, above_stride };
811
3.41k
  foreach_overlappable_nb_above(cm, xd,
812
3.41k
                                max_neighbor_obmc[mi_size_wide_log2[bsize]],
813
3.41k
                                build_obmc_inter_pred_above, &ctxt_above);
814
815
  // handle left column
816
3.41k
  struct obmc_inter_pred_ctxt ctxt_left = { left, left_stride };
817
3.41k
  foreach_overlappable_nb_left(cm, xd,
818
3.41k
                               max_neighbor_obmc[mi_size_high_log2[bsize]],
819
3.41k
                               build_obmc_inter_pred_left, &ctxt_left);
820
3.41k
}
821
822
void av1_setup_obmc_dst_bufs(MACROBLOCKD *xd, uint8_t **dst_buf1,
823
3.41k
                             uint8_t **dst_buf2) {
824
3.41k
  if (is_cur_buf_hbd(xd)) {
825
1.80k
    int len = sizeof(uint16_t);
826
1.80k
    dst_buf1[0] = CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[0]);
827
1.80k
    dst_buf1[1] =
828
1.80k
        CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE * len);
829
1.80k
    dst_buf1[2] =
830
1.80k
        CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE * 2 * len);
831
1.80k
    dst_buf2[0] = CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[1]);
832
1.80k
    dst_buf2[1] =
833
1.80k
        CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[1] + MAX_SB_SQUARE * len);
834
1.80k
    dst_buf2[2] =
835
1.80k
        CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[1] + MAX_SB_SQUARE * 2 * len);
836
1.80k
  } else {
837
1.61k
    dst_buf1[0] = xd->tmp_obmc_bufs[0];
838
1.61k
    dst_buf1[1] = xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE;
839
1.61k
    dst_buf1[2] = xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE * 2;
840
1.61k
    dst_buf2[0] = xd->tmp_obmc_bufs[1];
841
1.61k
    dst_buf2[1] = xd->tmp_obmc_bufs[1] + MAX_SB_SQUARE;
842
1.61k
    dst_buf2[2] = xd->tmp_obmc_bufs[1] + MAX_SB_SQUARE * 2;
843
1.61k
  }
844
3.41k
}
845
846
#if CONFIG_AV1_DECODER
847
void av1_setup_build_prediction_by_above_pred(
848
    MACROBLOCKD *xd, int rel_mi_col, uint8_t above_mi_width,
849
    MB_MODE_INFO *above_mbmi, struct build_prediction_ctxt *ctxt,
850
1.53k
    const int num_planes) {
851
1.53k
  const BLOCK_SIZE a_bsize = AOMMAX(BLOCK_8X8, above_mbmi->bsize);
852
1.53k
  const int above_mi_col = xd->mi_col + rel_mi_col;
853
854
1.53k
  modify_neighbor_predictor_for_obmc(above_mbmi);
855
856
5.80k
  for (int j = 0; j < num_planes; ++j) {
857
4.26k
    struct macroblockd_plane *const pd = &xd->plane[j];
858
4.26k
    setup_pred_plane(&pd->dst, a_bsize, ctxt->tmp_buf[j], ctxt->tmp_width[j],
859
4.26k
                     ctxt->tmp_height[j], ctxt->tmp_stride[j], 0, rel_mi_col,
860
4.26k
                     NULL, pd->subsampling_x, pd->subsampling_y);
861
4.26k
  }
862
863
1.53k
  const int num_refs = 1 + has_second_ref(above_mbmi);
864
865
3.07k
  for (int ref = 0; ref < num_refs; ++ref) {
866
1.53k
    const MV_REFERENCE_FRAME frame = above_mbmi->ref_frame[ref];
867
868
1.53k
    const RefCntBuffer *const ref_buf = get_ref_frame_buf(ctxt->cm, frame);
869
1.53k
    const struct scale_factors *const sf =
870
1.53k
        get_ref_scale_factors_const(ctxt->cm, frame);
871
1.53k
    xd->block_ref_scale_factors[ref] = sf;
872
1.53k
    if ((!av1_is_valid_scale(sf)))
873
0
      aom_internal_error(xd->error_info, AOM_CODEC_UNSUP_BITSTREAM,
874
0
                         "Reference frame has invalid dimensions");
875
1.53k
    av1_setup_pre_planes(xd, ref, &ref_buf->buf, xd->mi_row, above_mi_col, sf,
876
1.53k
                         num_planes);
877
1.53k
  }
878
879
1.53k
  xd->mb_to_left_edge = 8 * MI_SIZE * (-above_mi_col);
880
1.53k
  xd->mb_to_right_edge =
881
1.53k
      ctxt->mb_to_far_edge +
882
1.53k
      (xd->width - rel_mi_col - above_mi_width) * MI_SIZE * 8;
883
1.53k
}
884
885
void av1_setup_build_prediction_by_left_pred(MACROBLOCKD *xd, int rel_mi_row,
886
                                             uint8_t left_mi_height,
887
                                             MB_MODE_INFO *left_mbmi,
888
                                             struct build_prediction_ctxt *ctxt,
889
2.37k
                                             const int num_planes) {
890
2.37k
  const BLOCK_SIZE l_bsize = AOMMAX(BLOCK_8X8, left_mbmi->bsize);
891
2.37k
  const int left_mi_row = xd->mi_row + rel_mi_row;
892
893
2.37k
  modify_neighbor_predictor_for_obmc(left_mbmi);
894
895
9.36k
  for (int j = 0; j < num_planes; ++j) {
896
6.98k
    struct macroblockd_plane *const pd = &xd->plane[j];
897
6.98k
    setup_pred_plane(&pd->dst, l_bsize, ctxt->tmp_buf[j], ctxt->tmp_width[j],
898
6.98k
                     ctxt->tmp_height[j], ctxt->tmp_stride[j], rel_mi_row, 0,
899
6.98k
                     NULL, pd->subsampling_x, pd->subsampling_y);
900
6.98k
  }
901
902
2.37k
  const int num_refs = 1 + has_second_ref(left_mbmi);
903
904
4.74k
  for (int ref = 0; ref < num_refs; ++ref) {
905
2.37k
    const MV_REFERENCE_FRAME frame = left_mbmi->ref_frame[ref];
906
907
2.37k
    const RefCntBuffer *const ref_buf = get_ref_frame_buf(ctxt->cm, frame);
908
2.37k
    const struct scale_factors *const ref_scale_factors =
909
2.37k
        get_ref_scale_factors_const(ctxt->cm, frame);
910
911
2.37k
    xd->block_ref_scale_factors[ref] = ref_scale_factors;
912
2.37k
    if ((!av1_is_valid_scale(ref_scale_factors)))
913
0
      aom_internal_error(xd->error_info, AOM_CODEC_UNSUP_BITSTREAM,
914
0
                         "Reference frame has invalid dimensions");
915
2.37k
    av1_setup_pre_planes(xd, ref, &ref_buf->buf, left_mi_row, xd->mi_col,
916
2.37k
                         ref_scale_factors, num_planes);
917
2.37k
  }
918
919
2.37k
  xd->mb_to_top_edge = GET_MV_SUBPEL(MI_SIZE * (-left_mi_row));
920
2.37k
  xd->mb_to_bottom_edge =
921
2.37k
      ctxt->mb_to_far_edge +
922
2.37k
      GET_MV_SUBPEL((xd->height - rel_mi_row - left_mi_height) * MI_SIZE);
923
2.37k
}
924
#endif  // CONFIG_AV1_DECODER
925
926
static inline void combine_interintra(
927
    INTERINTRA_MODE mode, int8_t use_wedge_interintra, int8_t wedge_index,
928
    int8_t wedge_sign, BLOCK_SIZE bsize, BLOCK_SIZE plane_bsize,
929
    uint8_t *comppred, int compstride, const uint8_t *interpred,
930
1.20k
    int interstride, const uint8_t *intrapred, int intrastride) {
931
1.20k
  const int bw = block_size_wide[plane_bsize];
932
1.20k
  const int bh = block_size_high[plane_bsize];
933
934
1.20k
  if (use_wedge_interintra) {
935
601
    if (av1_is_wedge_used(bsize)) {
936
601
      const uint8_t *mask =
937
601
          av1_get_contiguous_soft_mask(wedge_index, wedge_sign, bsize);
938
601
      const int subw = 2 * mi_size_wide[bsize] == bw;
939
601
      const int subh = 2 * mi_size_high[bsize] == bh;
940
601
      aom_blend_a64_mask(comppred, compstride, intrapred, intrastride,
941
601
                         interpred, interstride, mask, block_size_wide[bsize],
942
601
                         bw, bh, subw, subh);
943
601
    }
944
601
    return;
945
601
  }
946
947
608
  const uint8_t *mask = smooth_interintra_mask_buf[mode][plane_bsize];
948
608
  aom_blend_a64_mask(comppred, compstride, intrapred, intrastride, interpred,
949
608
                     interstride, mask, bw, bw, bh, 0, 0);
950
608
}
951
952
#if CONFIG_AV1_HIGHBITDEPTH
953
static inline void combine_interintra_highbd(
954
    INTERINTRA_MODE mode, int8_t use_wedge_interintra, int8_t wedge_index,
955
    int8_t wedge_sign, BLOCK_SIZE bsize, BLOCK_SIZE plane_bsize,
956
    uint8_t *comppred8, int compstride, const uint8_t *interpred8,
957
3.67k
    int interstride, const uint8_t *intrapred8, int intrastride, int bd) {
958
3.67k
  const int bw = block_size_wide[plane_bsize];
959
3.67k
  const int bh = block_size_high[plane_bsize];
960
961
3.67k
  if (use_wedge_interintra) {
962
1.32k
    if (av1_is_wedge_used(bsize)) {
963
1.32k
      const uint8_t *mask =
964
1.32k
          av1_get_contiguous_soft_mask(wedge_index, wedge_sign, bsize);
965
1.32k
      const int subh = 2 * mi_size_high[bsize] == bh;
966
1.32k
      const int subw = 2 * mi_size_wide[bsize] == bw;
967
1.32k
      aom_highbd_blend_a64_mask(comppred8, compstride, intrapred8, intrastride,
968
1.32k
                                interpred8, interstride, mask,
969
1.32k
                                block_size_wide[bsize], bw, bh, subw, subh, bd);
970
1.32k
    }
971
1.32k
    return;
972
1.32k
  }
973
974
2.34k
  uint8_t mask[MAX_SB_SQUARE];
975
2.34k
  build_smooth_interintra_mask(mask, bw, plane_bsize, mode);
976
2.34k
  aom_highbd_blend_a64_mask(comppred8, compstride, intrapred8, intrastride,
977
2.34k
                            interpred8, interstride, mask, bw, bw, bh, 0, 0,
978
2.34k
                            bd);
979
2.34k
}
980
#endif
981
982
void av1_build_intra_predictors_for_interintra(const AV1_COMMON *cm,
983
                                               MACROBLOCKD *xd,
984
                                               BLOCK_SIZE bsize, int plane,
985
                                               const BUFFER_SET *ctx,
986
4.87k
                                               uint8_t *dst, int dst_stride) {
987
4.87k
  struct macroblockd_plane *const pd = &xd->plane[plane];
988
4.87k
  const int ssx = xd->plane[plane].subsampling_x;
989
4.87k
  const int ssy = xd->plane[plane].subsampling_y;
990
4.87k
  BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, ssx, ssy);
991
4.87k
  PREDICTION_MODE mode = interintra_to_intra_mode[xd->mi[0]->interintra_mode];
992
4.87k
  assert(xd->mi[0]->angle_delta[PLANE_TYPE_Y] == 0);
993
4.87k
  assert(xd->mi[0]->angle_delta[PLANE_TYPE_UV] == 0);
994
4.87k
  assert(xd->mi[0]->filter_intra_mode_info.use_filter_intra == 0);
995
4.87k
  assert(xd->mi[0]->use_intrabc == 0);
996
4.87k
  const SequenceHeader *seq_params = cm->seq_params;
997
998
4.87k
  av1_predict_intra_block(xd, seq_params->sb_size,
999
4.87k
                          seq_params->enable_intra_edge_filter, pd->width,
1000
4.87k
                          pd->height, max_txsize_rect_lookup[plane_bsize], mode,
1001
4.87k
                          0, 0, FILTER_INTRA_MODES, ctx->plane[plane],
1002
4.87k
                          ctx->stride[plane], dst, dst_stride, 0, 0, plane);
1003
4.87k
}
1004
1005
void av1_combine_interintra(MACROBLOCKD *xd, BLOCK_SIZE bsize, int plane,
1006
                            const uint8_t *inter_pred, int inter_stride,
1007
4.87k
                            const uint8_t *intra_pred, int intra_stride) {
1008
4.87k
  const int ssx = xd->plane[plane].subsampling_x;
1009
4.87k
  const int ssy = xd->plane[plane].subsampling_y;
1010
4.87k
  const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, ssx, ssy);
1011
4.87k
#if CONFIG_AV1_HIGHBITDEPTH
1012
4.87k
  if (is_cur_buf_hbd(xd)) {
1013
3.67k
    combine_interintra_highbd(
1014
3.67k
        xd->mi[0]->interintra_mode, xd->mi[0]->use_wedge_interintra,
1015
3.67k
        xd->mi[0]->interintra_wedge_index, INTERINTRA_WEDGE_SIGN, bsize,
1016
3.67k
        plane_bsize, xd->plane[plane].dst.buf, xd->plane[plane].dst.stride,
1017
3.67k
        inter_pred, inter_stride, intra_pred, intra_stride, xd->bd);
1018
3.67k
    return;
1019
3.67k
  }
1020
1.20k
#endif
1021
1.20k
  combine_interintra(
1022
1.20k
      xd->mi[0]->interintra_mode, xd->mi[0]->use_wedge_interintra,
1023
1.20k
      xd->mi[0]->interintra_wedge_index, INTERINTRA_WEDGE_SIGN, bsize,
1024
1.20k
      plane_bsize, xd->plane[plane].dst.buf, xd->plane[plane].dst.stride,
1025
1.20k
      inter_pred, inter_stride, intra_pred, intra_stride);
1026
1.20k
}
1027
1028
// build interintra_predictors for one plane
1029
void av1_build_interintra_predictor(const AV1_COMMON *cm, MACROBLOCKD *xd,
1030
                                    uint8_t *pred, int stride,
1031
                                    const BUFFER_SET *ctx, int plane,
1032
4.87k
                                    BLOCK_SIZE bsize) {
1033
4.87k
  assert(bsize < BLOCK_SIZES_ALL);
1034
4.87k
  if (is_cur_buf_hbd(xd)) {
1035
3.67k
    DECLARE_ALIGNED(16, uint16_t, intrapredictor[MAX_SB_SQUARE]);
1036
3.67k
    av1_build_intra_predictors_for_interintra(
1037
3.67k
        cm, xd, bsize, plane, ctx, CONVERT_TO_BYTEPTR(intrapredictor),
1038
3.67k
        MAX_SB_SIZE);
1039
3.67k
    av1_combine_interintra(xd, bsize, plane, pred, stride,
1040
3.67k
                           CONVERT_TO_BYTEPTR(intrapredictor), MAX_SB_SIZE);
1041
3.67k
  } else {
1042
1.20k
    DECLARE_ALIGNED(16, uint8_t, intrapredictor[MAX_SB_SQUARE]);
1043
1.20k
    av1_build_intra_predictors_for_interintra(cm, xd, bsize, plane, ctx,
1044
1.20k
                                              intrapredictor, MAX_SB_SIZE);
1045
1.20k
    av1_combine_interintra(xd, bsize, plane, pred, stride, intrapredictor,
1046
1.20k
                           MAX_SB_SIZE);
1047
1.20k
  }
1048
4.87k
}