Coverage Report

Created: 2026-07-14 07:20

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
5.11M
                      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
5.11M
  if (av1_is_scaled(sf)) return 0;
41
42
4.74M
  if (final_warp_params != NULL) *final_warp_params = default_warp_params;
43
44
4.74M
  if (build_for_obmc) return 0;
45
46
4.74M
  if (warp_types->local_warp_allowed && !mbmi->wm_params.invalid) {
47
391k
    if (final_warp_params != NULL) *final_warp_params = mbmi->wm_params;
48
391k
    return 1;
49
4.35M
  } else if (warp_types->global_warp_allowed && !gm_params->invalid) {
50
109k
    if (final_warp_params != NULL) *final_warp_params = *gm_params;
51
109k
    return 1;
52
109k
  }
53
54
4.24M
  return 0;
55
4.74M
}
56
57
void av1_init_warp_params(InterPredParams *inter_pred_params,
58
                          const WarpTypesAllowed *warp_types, int ref,
59
9.81M
                          const MACROBLOCKD *xd, const MB_MODE_INFO *mi) {
60
9.81M
  if (inter_pred_params->block_height < 8 || inter_pred_params->block_width < 8)
61
4.56M
    return;
62
63
5.25M
  if (xd->cur_frame_force_integer_mv) return;
64
65
5.11M
  if (allow_warp(mi, warp_types, &xd->global_motion[mi->ref_frame[ref]], 0,
66
5.11M
                 inter_pred_params->scale_factors,
67
5.11M
                 &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
500k
    inter_pred_params->mode = WARP_PRED;
73
500k
  }
74
5.11M
}
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
14.1M
                              const SubpelParams *subpel_params) {
80
14.1M
  assert(IMPLIES(inter_pred_params->conv_params.is_compound,
81
14.1M
                 inter_pred_params->conv_params.dst != NULL));
82
83
14.1M
  if (inter_pred_params->mode == TRANSLATION_PRED) {
84
13.6M
#if CONFIG_AV1_HIGHBITDEPTH
85
13.6M
    if (inter_pred_params->use_hbd_buf) {
86
7.72M
      highbd_inter_predictor(src, src_stride, dst, dst_stride, subpel_params,
87
7.72M
                             inter_pred_params->block_width,
88
7.72M
                             inter_pred_params->block_height,
89
7.72M
                             &inter_pred_params->conv_params,
90
7.72M
                             inter_pred_params->interp_filter_params,
91
7.72M
                             inter_pred_params->bit_depth);
92
7.72M
    } else {
93
5.88M
      inter_predictor(src, src_stride, dst, dst_stride, subpel_params,
94
5.88M
                      inter_pred_params->block_width,
95
5.88M
                      inter_pred_params->block_height,
96
5.88M
                      &inter_pred_params->conv_params,
97
5.88M
                      inter_pred_params->interp_filter_params);
98
5.88M
    }
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
13.6M
  }
107
498k
#if !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
108
  // TODO(jingning): av1_warp_plane() can be further cleaned up.
109
500k
  else if (inter_pred_params->mode == WARP_PRED) {
110
500k
    av1_warp_plane(
111
500k
        &inter_pred_params->warp_params, inter_pred_params->use_hbd_buf,
112
500k
        inter_pred_params->bit_depth, inter_pred_params->ref_frame_buf.buf0,
113
500k
        inter_pred_params->ref_frame_buf.width,
114
500k
        inter_pred_params->ref_frame_buf.height,
115
500k
        inter_pred_params->ref_frame_buf.stride, dst,
116
500k
        inter_pred_params->pix_col, inter_pred_params->pix_row,
117
500k
        inter_pred_params->block_width, inter_pred_params->block_height,
118
500k
        dst_stride, inter_pred_params->subsampling_x,
119
500k
        inter_pred_params->subsampling_y, &inter_pred_params->conv_params);
120
500k
  }
121
18.4E
#endif  // !CONFIG_REALTIME_ONLY || CONFIG_AV1_DECODER
122
18.4E
  else {
123
18.4E
    assert(0 && "Unsupported inter_pred_params->mode");
124
18.4E
  }
125
14.1M
}
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
365k
                                            BLOCK_SIZE sb_type) {
235
365k
  return wedge_mask_buf +
236
365k
         av1_wedge_params_lookup[sb_type].masks[wedge_sign][wedge_index];
237
365k
}
238
239
const uint8_t *av1_get_compound_type_mask(
240
314k
    const INTERINTER_COMPOUND_DATA *const comp_data, BLOCK_SIZE sb_type) {
241
314k
  (void)sb_type;
242
314k
  switch (comp_data->type) {
243
127k
    case COMPOUND_WEDGE:
244
127k
      return av1_get_contiguous_soft_mask(comp_data->wedge_index,
245
127k
                                          comp_data->wedge_sign, sb_type);
246
186k
    default: return comp_data->seg_mask;
247
314k
  }
248
314k
}
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
0
                                    ConvolveParams *conv_params, int bd) {
255
0
  int round =
256
0
      2 * FILTER_BITS - conv_params->round_0 - conv_params->round_1 + (bd - 8);
257
0
  int i, j, m, diff;
258
0
  for (i = 0; i < h; ++i) {
259
0
    for (j = 0; j < w; ++j) {
260
0
      diff = abs(src0[i * src0_stride + j] - src1[i * src1_stride + j]);
261
0
      diff = ROUND_POWER_OF_TWO(diff, round);
262
0
      m = clamp(mask_base + (diff / DIFF_FACTOR), 0, AOM_BLEND_A64_MAX_ALPHA);
263
0
      mask[i * w + j] = which_inverse ? AOM_BLEND_A64_MAX_ALPHA - m : m;
264
0
    }
265
0
  }
266
0
}
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
0
    ConvolveParams *conv_params, int bd) {
272
0
  switch (mask_type) {
273
0
    case DIFFWTD_38:
274
0
      diffwtd_mask_d16(mask, 0, 38, src0, src0_stride, src1, src1_stride, h, w,
275
0
                       conv_params, bd);
276
0
      break;
277
0
    case DIFFWTD_38_INV:
278
0
      diffwtd_mask_d16(mask, 1, 38, src0, src0_stride, src1, src1_stride, h, w,
279
0
                       conv_params, bd);
280
0
      break;
281
0
    default: assert(0);
282
0
  }
283
0
}
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
269k
                                                INTERINTRA_MODE mode) {
425
269k
  int i, j;
426
269k
  const int bw = block_size_wide[plane_bsize];
427
269k
  const int bh = block_size_high[plane_bsize];
428
269k
  const int size_scale = ii_size_scales[plane_bsize];
429
430
269k
  switch (mode) {
431
51.4k
    case II_V_PRED:
432
553k
      for (i = 0; i < bh; ++i) {
433
502k
        memset(mask, ii_weights1d[i * size_scale], bw * sizeof(mask[0]));
434
502k
        mask += stride;
435
502k
      }
436
51.4k
      break;
437
438
126k
    case II_H_PRED:
439
1.32M
      for (i = 0; i < bh; ++i) {
440
15.9M
        for (j = 0; j < bw; ++j) mask[j] = ii_weights1d[j * size_scale];
441
1.20M
        mask += stride;
442
1.20M
      }
443
126k
      break;
444
445
44.8k
    case II_SMOOTH_PRED:
446
505k
      for (i = 0; i < bh; ++i) {
447
6.42M
        for (j = 0; j < bw; ++j)
448
5.96M
          mask[j] = ii_weights1d[(i < j ? i : j) * size_scale];
449
461k
        mask += stride;
450
461k
      }
451
44.8k
      break;
452
453
46.7k
    case II_DC_PRED:
454
46.7k
    default:
455
515k
      for (i = 0; i < bh; ++i) {
456
469k
        memset(mask, 32, bw * sizeof(mask[0]));
457
469k
        mask += stride;
458
469k
      }
459
46.7k
      break;
460
269k
  }
461
269k
}
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
10.7k
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
314k
    int w, InterPredParams *inter_pred_params) {
474
314k
  const int ssy = inter_pred_params->subsampling_y;
475
314k
  const int ssx = inter_pred_params->subsampling_x;
476
314k
  const uint8_t *mask = av1_get_compound_type_mask(comp_data, sb_type);
477
314k
  const int mask_stride = block_size_wide[sb_type];
478
314k
#if CONFIG_AV1_HIGHBITDEPTH
479
314k
  if (inter_pred_params->use_hbd_buf) {
480
207k
    aom_highbd_blend_a64_d16_mask(dst, dst_stride, src0, src0_stride, src1,
481
207k
                                  src1_stride, mask, mask_stride, w, h, ssx,
482
207k
                                  ssy, &inter_pred_params->conv_params,
483
207k
                                  inter_pred_params->bit_depth);
484
207k
  } else {
485
106k
    aom_lowbd_blend_a64_d16_mask(dst, dst_stride, src0, src0_stride, src1,
486
106k
                                 src1_stride, mask, mask_stride, w, h, ssx, ssy,
487
106k
                                 &inter_pred_params->conv_params);
488
106k
  }
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
314k
}
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
314k
                                     const SubpelParams *subpel_params) {
500
314k
  const INTERINTER_COMPOUND_DATA *comp_data = &inter_pred_params->mask_comp;
501
314k
  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
314k
  DECLARE_ALIGNED(32, uint8_t, tmp_buf[2 * MAX_SB_SQUARE]);
507
314k
  uint8_t *tmp_dst =
508
314k
      inter_pred_params->use_hbd_buf ? CONVERT_TO_BYTEPTR(tmp_buf) : tmp_buf;
509
510
314k
  const int tmp_buf_stride = MAX_SB_SIZE;
511
314k
  CONV_BUF_TYPE *org_dst = inter_pred_params->conv_params.dst;
512
314k
  int org_dst_stride = inter_pred_params->conv_params.dst_stride;
513
314k
  CONV_BUF_TYPE *tmp_buf16 = (CONV_BUF_TYPE *)tmp_buf;
514
314k
  inter_pred_params->conv_params.dst = tmp_buf16;
515
314k
  inter_pred_params->conv_params.dst_stride = tmp_buf_stride;
516
314k
  assert(inter_pred_params->conv_params.do_average == 0);
517
518
  // This will generate a prediction in tmp_buf for the second reference
519
314k
  av1_make_inter_predictor(pre, pre_stride, tmp_dst, MAX_SB_SIZE,
520
314k
                           inter_pred_params, subpel_params);
521
522
314k
  if (!inter_pred_params->conv_params.plane &&
523
105k
      comp_data->type == COMPOUND_DIFFWTD) {
524
62.9k
    av1_build_compound_diffwtd_mask_d16(
525
62.9k
        comp_data->seg_mask, comp_data->mask_type, org_dst, org_dst_stride,
526
62.9k
        tmp_buf16, tmp_buf_stride, inter_pred_params->block_height,
527
62.9k
        inter_pred_params->block_width, &inter_pred_params->conv_params,
528
62.9k
        inter_pred_params->bit_depth);
529
62.9k
  }
530
314k
  build_masked_compound_no_round(
531
314k
      dst, dst_stride, org_dst, org_dst_stride, tmp_buf16, tmp_buf_stride,
532
314k
      comp_data, sb_type, inter_pred_params->block_height,
533
314k
      inter_pred_params->block_width, inter_pred_params);
534
314k
}
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
11.9M
                                     int is_compound) {
541
11.9M
  assert(fwd_offset != NULL && bck_offset != NULL);
542
11.9M
  if (!is_compound || mbmi->compound_idx) {
543
11.5M
    *fwd_offset = 8;
544
11.5M
    *bck_offset = 8;
545
11.5M
    *use_dist_wtd_comp_avg = 0;
546
11.5M
    return;
547
11.5M
  }
548
549
469k
  *use_dist_wtd_comp_avg = 1;
550
469k
  const RefCntBuffer *const bck_buf = get_ref_frame_buf(cm, mbmi->ref_frame[0]);
551
469k
  const RefCntBuffer *const fwd_buf = get_ref_frame_buf(cm, mbmi->ref_frame[1]);
552
469k
  const int cur_frame_index = cm->cur_frame->order_hint;
553
469k
  int bck_frame_index = 0, fwd_frame_index = 0;
554
555
469k
  if (bck_buf != NULL) bck_frame_index = bck_buf->order_hint;
556
469k
  if (fwd_buf != NULL) fwd_frame_index = fwd_buf->order_hint;
557
558
469k
  int d0 = clamp(abs(get_relative_dist(&cm->seq_params->order_hint_info,
559
469k
                                       fwd_frame_index, cur_frame_index)),
560
469k
                 0, MAX_FRAME_DISTANCE);
561
469k
  int d1 = clamp(abs(get_relative_dist(&cm->seq_params->order_hint_info,
562
469k
                                       cur_frame_index, bck_frame_index)),
563
469k
                 0, MAX_FRAME_DISTANCE);
564
565
469k
  const int order = d0 <= d1;
566
567
469k
  if (d0 == 0 || d1 == 0) {
568
8.81k
    *fwd_offset = quant_dist_lookup_table[3][order];
569
8.81k
    *bck_offset = quant_dist_lookup_table[3][1 - order];
570
8.81k
    return;
571
8.81k
  }
572
573
460k
  int i;
574
573k
  for (i = 0; i < 3; ++i) {
575
544k
    int c0 = quant_dist_weight[i][order];
576
544k
    int c1 = quant_dist_weight[i][!order];
577
544k
    int d0_c0 = d0 * c0;
578
544k
    int d1_c1 = d1 * c1;
579
544k
    if ((d0 > d1 && d0_c0 < d1_c1) || (d0 <= d1 && d0_c0 > d1_c1)) break;
580
544k
  }
581
582
460k
  *fwd_offset = quant_dist_lookup_table[i][order];
583
460k
  *bck_offset = quant_dist_lookup_table[i][1 - order];
584
460k
}
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
21.6M
                          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
82.5M
  for (int i = plane_start; i < AOMMIN(plane_end, MAX_MB_PLANE); ++i) {
592
60.9M
    struct macroblockd_plane *const pd = &planes[i];
593
60.9M
    const int is_uv = i > 0;
594
60.9M
    setup_pred_plane(&pd->dst, bsize, src->buffers[i], src->crop_widths[is_uv],
595
60.9M
                     src->crop_heights[is_uv], src->strides[is_uv], mi_row,
596
60.9M
                     mi_col, NULL, pd->subsampling_x, pd->subsampling_y);
597
60.9M
  }
598
21.6M
}
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
5.01M
                          const int num_planes) {
604
5.01M
  if (src != NULL) {
605
    // We use AOMMIN(num_planes, MAX_MB_PLANE) instead of num_planes to quiet
606
    // the static analysis warnings.
607
19.9M
    for (int i = 0; i < AOMMIN(num_planes, MAX_MB_PLANE); ++i) {
608
14.9M
      struct macroblockd_plane *const pd = &xd->plane[i];
609
14.9M
      const int is_uv = i > 0;
610
14.9M
      setup_pred_plane(&pd->pre[idx], xd->mi[0]->bsize, src->buffers[i],
611
14.9M
                       src->crop_widths[is_uv], src->crop_heights[is_uv],
612
14.9M
                       src->strides[is_uv], mi_row, mi_col, sf,
613
14.9M
                       pd->subsampling_x, pd->subsampling_y);
614
14.9M
    }
615
5.01M
  }
616
5.01M
}
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
2.16M
const uint8_t *av1_get_obmc_mask(int length) {
642
2.16M
  switch (length) {
643
0
    case 1: return obmc_mask_1;
644
407k
    case 2: return obmc_mask_2;
645
1.09M
    case 4: return obmc_mask_4;
646
535k
    case 8: return obmc_mask_8;
647
115k
    case 16: return obmc_mask_16;
648
15.9k
    case 32: return obmc_mask_32;
649
0
    case 64: return obmc_mask_64;
650
0
    default: assert(0); return NULL;
651
2.16M
  }
652
2.16M
}
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
2.86M
                                     const int num_planes) {
658
2.86M
  (void)xd;
659
2.86M
  (void)rel_mi_row;
660
2.86M
  (void)rel_mi_col;
661
2.86M
  (void)op_mi_size;
662
2.86M
  (void)dir;
663
2.86M
  (void)mi;
664
2.86M
  ++*(uint8_t *)fun_ctxt;
665
2.86M
  (void)num_planes;
666
2.86M
}
667
668
3.96M
void av1_count_overlappable_neighbors(const AV1_COMMON *cm, MACROBLOCKD *xd) {
669
3.96M
  MB_MODE_INFO *mbmi = xd->mi[0];
670
671
3.96M
  mbmi->overlappable_neighbors = 0;
672
673
3.96M
  if (!is_motion_variation_allowed_bsize(mbmi->bsize)) return;
674
675
2.52M
  foreach_overlappable_nb_above(cm, xd, INT_MAX, increment_int_ptr,
676
2.52M
                                &mbmi->overlappable_neighbors);
677
2.52M
  if (mbmi->overlappable_neighbors) return;
678
473k
  foreach_overlappable_nb_left(cm, xd, INT_MAX, increment_int_ptr,
679
473k
                               &mbmi->overlappable_neighbors);
680
473k
}
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
5.69M
                               const struct macroblockd_plane *pd, int dir) {
689
5.69M
  assert(is_motion_variation_allowed_bsize(bsize));
690
691
5.69M
  const BLOCK_SIZE bsize_plane =
692
5.69M
      get_plane_block_size(bsize, pd->subsampling_x, pd->subsampling_y);
693
5.69M
  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
771k
    case BLOCK_4X4:
700
2.12M
    case BLOCK_8X4:
701
2.66M
    case BLOCK_4X8: return dir == 0;
702
0
#endif
703
3.02M
    default: return 0;
704
5.69M
  }
705
5.69M
}
706
707
#if CONFIG_AV1_DECODER
708
953k
static void modify_neighbor_predictor_for_obmc(MB_MODE_INFO *mbmi) {
709
953k
  mbmi->ref_frame[1] = NONE_FRAME;
710
953k
  mbmi->interinter_comp.type = COMPOUND_AVERAGE;
711
953k
}
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
481k
    int dir, MB_MODE_INFO *above_mi, void *fun_ctxt, const int num_planes) {
722
481k
  (void)above_mi;
723
481k
  (void)rel_mi_row;
724
481k
  (void)dir;
725
481k
  struct obmc_inter_pred_ctxt *ctxt = (struct obmc_inter_pred_ctxt *)fun_ctxt;
726
481k
  const BLOCK_SIZE bsize = xd->mi[0]->bsize;
727
481k
  const int overlap =
728
481k
      AOMMIN(block_size_high[bsize], block_size_high[BLOCK_64X64]) >> 1;
729
730
1.91M
  for (int plane = 0; plane < num_planes; ++plane) {
731
1.43M
    const struct macroblockd_plane *pd = &xd->plane[plane];
732
1.43M
    const int bw = (op_mi_size * MI_SIZE) >> pd->subsampling_x;
733
1.43M
    const int bh = overlap >> pd->subsampling_y;
734
1.43M
    const int plane_col = (rel_mi_col * MI_SIZE) >> pd->subsampling_x;
735
736
1.43M
    if (av1_skip_u4x4_pred_in_obmc(bsize, pd, 0)) continue;
737
738
758k
    const int dst_stride = pd->dst.stride;
739
758k
    uint8_t *const dst = &pd->dst.buf[plane_col];
740
758k
    const int tmp_stride = ctxt->adjacent_stride[plane];
741
758k
    const uint8_t *const tmp = &ctxt->adjacent[plane][plane_col];
742
758k
    const uint8_t *const mask = av1_get_obmc_mask(bh);
743
758k
#if CONFIG_AV1_HIGHBITDEPTH
744
758k
    const int is_hbd = is_cur_buf_hbd(xd);
745
758k
    if (is_hbd)
746
466k
      aom_highbd_blend_a64_vmask(dst, dst_stride, dst, dst_stride, tmp,
747
466k
                                 tmp_stride, mask, bw, bh, xd->bd);
748
292k
    else
749
292k
      aom_blend_a64_vmask(dst, dst_stride, dst, dst_stride, tmp, tmp_stride,
750
292k
                          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
758k
  }
756
481k
}
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
472k
    int dir, MB_MODE_INFO *left_mi, void *fun_ctxt, const int num_planes) {
761
472k
  (void)left_mi;
762
472k
  (void)rel_mi_col;
763
472k
  (void)dir;
764
472k
  struct obmc_inter_pred_ctxt *ctxt = (struct obmc_inter_pred_ctxt *)fun_ctxt;
765
472k
  const BLOCK_SIZE bsize = xd->mi[0]->bsize;
766
472k
  const int overlap =
767
472k
      AOMMIN(block_size_wide[bsize], block_size_wide[BLOCK_64X64]) >> 1;
768
769
1.88M
  for (int plane = 0; plane < num_planes; ++plane) {
770
1.41M
    const struct macroblockd_plane *pd = &xd->plane[plane];
771
1.41M
    const int bw = overlap >> pd->subsampling_x;
772
1.41M
    const int bh = (op_mi_size * MI_SIZE) >> pd->subsampling_y;
773
1.41M
    const int plane_row = (rel_mi_row * MI_SIZE) >> pd->subsampling_y;
774
775
1.41M
    if (av1_skip_u4x4_pred_in_obmc(bsize, pd, 1)) continue;
776
777
1.41M
    const int dst_stride = pd->dst.stride;
778
1.41M
    uint8_t *const dst = &pd->dst.buf[plane_row * dst_stride];
779
1.41M
    const int tmp_stride = ctxt->adjacent_stride[plane];
780
1.41M
    const uint8_t *const tmp = &ctxt->adjacent[plane][plane_row * tmp_stride];
781
1.41M
    const uint8_t *const mask = av1_get_obmc_mask(bw);
782
783
1.41M
#if CONFIG_AV1_HIGHBITDEPTH
784
1.41M
    const int is_hbd = is_cur_buf_hbd(xd);
785
1.41M
    if (is_hbd)
786
843k
      aom_highbd_blend_a64_hmask(dst, dst_stride, dst, dst_stride, tmp,
787
843k
                                 tmp_stride, mask, bw, bh, xd->bd);
788
568k
    else
789
568k
      aom_blend_a64_hmask(dst, dst_stride, dst, dst_stride, tmp, tmp_stride,
790
568k
                          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
1.41M
  }
796
472k
}
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
496k
                                     int left_stride[MAX_MB_PLANE]) {
807
496k
  const BLOCK_SIZE bsize = xd->mi[0]->bsize;
808
809
  // handle above row
810
496k
  struct obmc_inter_pred_ctxt ctxt_above = { above, above_stride };
811
496k
  foreach_overlappable_nb_above(cm, xd,
812
496k
                                max_neighbor_obmc[mi_size_wide_log2[bsize]],
813
496k
                                build_obmc_inter_pred_above, &ctxt_above);
814
815
  // handle left column
816
496k
  struct obmc_inter_pred_ctxt ctxt_left = { left, left_stride };
817
496k
  foreach_overlappable_nb_left(cm, xd,
818
496k
                               max_neighbor_obmc[mi_size_high_log2[bsize]],
819
496k
                               build_obmc_inter_pred_left, &ctxt_left);
820
496k
}
821
822
void av1_setup_obmc_dst_bufs(MACROBLOCKD *xd, uint8_t **dst_buf1,
823
496k
                             uint8_t **dst_buf2) {
824
496k
  if (is_cur_buf_hbd(xd)) {
825
295k
    int len = sizeof(uint16_t);
826
295k
    dst_buf1[0] = CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[0]);
827
295k
    dst_buf1[1] =
828
295k
        CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE * len);
829
295k
    dst_buf1[2] =
830
295k
        CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE * 2 * len);
831
295k
    dst_buf2[0] = CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[1]);
832
295k
    dst_buf2[1] =
833
295k
        CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[1] + MAX_SB_SQUARE * len);
834
295k
    dst_buf2[2] =
835
295k
        CONVERT_TO_BYTEPTR(xd->tmp_obmc_bufs[1] + MAX_SB_SQUARE * 2 * len);
836
295k
  } else {
837
200k
    dst_buf1[0] = xd->tmp_obmc_bufs[0];
838
200k
    dst_buf1[1] = xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE;
839
200k
    dst_buf1[2] = xd->tmp_obmc_bufs[0] + MAX_SB_SQUARE * 2;
840
200k
    dst_buf2[0] = xd->tmp_obmc_bufs[1];
841
200k
    dst_buf2[1] = xd->tmp_obmc_bufs[1] + MAX_SB_SQUARE;
842
200k
    dst_buf2[2] = xd->tmp_obmc_bufs[1] + MAX_SB_SQUARE * 2;
843
200k
  }
844
496k
}
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
481k
    const int num_planes) {
851
481k
  const BLOCK_SIZE a_bsize = AOMMAX(BLOCK_8X8, above_mbmi->bsize);
852
481k
  const int above_mi_col = xd->mi_col + rel_mi_col;
853
854
481k
  modify_neighbor_predictor_for_obmc(above_mbmi);
855
856
1.91M
  for (int j = 0; j < num_planes; ++j) {
857
1.43M
    struct macroblockd_plane *const pd = &xd->plane[j];
858
1.43M
    setup_pred_plane(&pd->dst, a_bsize, ctxt->tmp_buf[j], ctxt->tmp_width[j],
859
1.43M
                     ctxt->tmp_height[j], ctxt->tmp_stride[j], 0, rel_mi_col,
860
1.43M
                     NULL, pd->subsampling_x, pd->subsampling_y);
861
1.43M
  }
862
863
481k
  const int num_refs = 1 + has_second_ref(above_mbmi);
864
865
962k
  for (int ref = 0; ref < num_refs; ++ref) {
866
481k
    const MV_REFERENCE_FRAME frame = above_mbmi->ref_frame[ref];
867
868
481k
    const RefCntBuffer *const ref_buf = get_ref_frame_buf(ctxt->cm, frame);
869
481k
    const struct scale_factors *const sf =
870
481k
        get_ref_scale_factors_const(ctxt->cm, frame);
871
481k
    xd->block_ref_scale_factors[ref] = sf;
872
481k
    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
481k
    av1_setup_pre_planes(xd, ref, &ref_buf->buf, xd->mi_row, above_mi_col, sf,
876
481k
                         num_planes);
877
481k
  }
878
879
481k
  xd->mb_to_left_edge = 8 * MI_SIZE * (-above_mi_col);
880
481k
  xd->mb_to_right_edge =
881
481k
      ctxt->mb_to_far_edge +
882
481k
      (xd->width - rel_mi_col - above_mi_width) * MI_SIZE * 8;
883
481k
}
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
472k
                                             const int num_planes) {
890
472k
  const BLOCK_SIZE l_bsize = AOMMAX(BLOCK_8X8, left_mbmi->bsize);
891
472k
  const int left_mi_row = xd->mi_row + rel_mi_row;
892
893
472k
  modify_neighbor_predictor_for_obmc(left_mbmi);
894
895
1.88M
  for (int j = 0; j < num_planes; ++j) {
896
1.41M
    struct macroblockd_plane *const pd = &xd->plane[j];
897
1.41M
    setup_pred_plane(&pd->dst, l_bsize, ctxt->tmp_buf[j], ctxt->tmp_width[j],
898
1.41M
                     ctxt->tmp_height[j], ctxt->tmp_stride[j], rel_mi_row, 0,
899
1.41M
                     NULL, pd->subsampling_x, pd->subsampling_y);
900
1.41M
  }
901
902
472k
  const int num_refs = 1 + has_second_ref(left_mbmi);
903
904
944k
  for (int ref = 0; ref < num_refs; ++ref) {
905
472k
    const MV_REFERENCE_FRAME frame = left_mbmi->ref_frame[ref];
906
907
472k
    const RefCntBuffer *const ref_buf = get_ref_frame_buf(ctxt->cm, frame);
908
472k
    const struct scale_factors *const ref_scale_factors =
909
472k
        get_ref_scale_factors_const(ctxt->cm, frame);
910
911
472k
    xd->block_ref_scale_factors[ref] = ref_scale_factors;
912
472k
    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
472k
    av1_setup_pre_planes(xd, ref, &ref_buf->buf, left_mi_row, xd->mi_col,
916
472k
                         ref_scale_factors, num_planes);
917
472k
  }
918
919
472k
  xd->mb_to_top_edge = GET_MV_SUBPEL(MI_SIZE * (-left_mi_row));
920
472k
  xd->mb_to_bottom_edge =
921
472k
      ctxt->mb_to_far_edge +
922
472k
      GET_MV_SUBPEL((xd->height - rel_mi_row - left_mi_height) * MI_SIZE);
923
472k
}
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
316k
    int interstride, const uint8_t *intrapred, int intrastride) {
931
316k
  const int bw = block_size_wide[plane_bsize];
932
316k
  const int bh = block_size_high[plane_bsize];
933
934
316k
  if (use_wedge_interintra) {
935
81.6k
    if (av1_is_wedge_used(bsize)) {
936
81.6k
      const uint8_t *mask =
937
81.6k
          av1_get_contiguous_soft_mask(wedge_index, wedge_sign, bsize);
938
81.6k
      const int subw = 2 * mi_size_wide[bsize] == bw;
939
81.6k
      const int subh = 2 * mi_size_high[bsize] == bh;
940
81.6k
      aom_blend_a64_mask(comppred, compstride, intrapred, intrastride,
941
81.6k
                         interpred, interstride, mask, block_size_wide[bsize],
942
81.6k
                         bw, bh, subw, subh);
943
81.6k
    }
944
81.6k
    return;
945
81.6k
  }
946
947
234k
  const uint8_t *mask = smooth_interintra_mask_buf[mode][plane_bsize];
948
234k
  aom_blend_a64_mask(comppred, compstride, intrapred, intrastride, interpred,
949
234k
                     interstride, mask, bw, bw, bh, 0, 0);
950
234k
}
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
425k
    int interstride, const uint8_t *intrapred8, int intrastride, int bd) {
958
425k
  const int bw = block_size_wide[plane_bsize];
959
425k
  const int bh = block_size_high[plane_bsize];
960
961
425k
  if (use_wedge_interintra) {
962
156k
    if (av1_is_wedge_used(bsize)) {
963
156k
      const uint8_t *mask =
964
156k
          av1_get_contiguous_soft_mask(wedge_index, wedge_sign, bsize);
965
156k
      const int subh = 2 * mi_size_high[bsize] == bh;
966
156k
      const int subw = 2 * mi_size_wide[bsize] == bw;
967
156k
      aom_highbd_blend_a64_mask(comppred8, compstride, intrapred8, intrastride,
968
156k
                                interpred8, interstride, mask,
969
156k
                                block_size_wide[bsize], bw, bh, subw, subh, bd);
970
156k
    }
971
156k
    return;
972
156k
  }
973
974
269k
  uint8_t mask[MAX_SB_SQUARE];
975
269k
  build_smooth_interintra_mask(mask, bw, plane_bsize, mode);
976
269k
  aom_highbd_blend_a64_mask(comppred8, compstride, intrapred8, intrastride,
977
269k
                            interpred8, interstride, mask, bw, bw, bh, 0, 0,
978
269k
                            bd);
979
269k
}
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
742k
                                               uint8_t *dst, int dst_stride) {
987
742k
  struct macroblockd_plane *const pd = &xd->plane[plane];
988
742k
  const int ssx = xd->plane[plane].subsampling_x;
989
742k
  const int ssy = xd->plane[plane].subsampling_y;
990
742k
  BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, ssx, ssy);
991
742k
  PREDICTION_MODE mode = interintra_to_intra_mode[xd->mi[0]->interintra_mode];
992
742k
  assert(xd->mi[0]->angle_delta[PLANE_TYPE_Y] == 0);
993
742k
  assert(xd->mi[0]->angle_delta[PLANE_TYPE_UV] == 0);
994
742k
  assert(xd->mi[0]->filter_intra_mode_info.use_filter_intra == 0);
995
742k
  assert(xd->mi[0]->use_intrabc == 0);
996
742k
  const SequenceHeader *seq_params = cm->seq_params;
997
998
742k
  av1_predict_intra_block(xd, seq_params->sb_size,
999
742k
                          seq_params->enable_intra_edge_filter, pd->width,
1000
742k
                          pd->height, max_txsize_rect_lookup[plane_bsize], mode,
1001
742k
                          0, 0, FILTER_INTRA_MODES, ctx->plane[plane],
1002
742k
                          ctx->stride[plane], dst, dst_stride, 0, 0, plane);
1003
742k
}
1004
1005
void av1_combine_interintra(MACROBLOCKD *xd, BLOCK_SIZE bsize, int plane,
1006
                            const uint8_t *inter_pred, int inter_stride,
1007
742k
                            const uint8_t *intra_pred, int intra_stride) {
1008
742k
  const int ssx = xd->plane[plane].subsampling_x;
1009
742k
  const int ssy = xd->plane[plane].subsampling_y;
1010
742k
  const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, ssx, ssy);
1011
742k
#if CONFIG_AV1_HIGHBITDEPTH
1012
742k
  if (is_cur_buf_hbd(xd)) {
1013
425k
    combine_interintra_highbd(
1014
425k
        xd->mi[0]->interintra_mode, xd->mi[0]->use_wedge_interintra,
1015
425k
        xd->mi[0]->interintra_wedge_index, INTERINTRA_WEDGE_SIGN, bsize,
1016
425k
        plane_bsize, xd->plane[plane].dst.buf, xd->plane[plane].dst.stride,
1017
425k
        inter_pred, inter_stride, intra_pred, intra_stride, xd->bd);
1018
425k
    return;
1019
425k
  }
1020
316k
#endif
1021
316k
  combine_interintra(
1022
316k
      xd->mi[0]->interintra_mode, xd->mi[0]->use_wedge_interintra,
1023
316k
      xd->mi[0]->interintra_wedge_index, INTERINTRA_WEDGE_SIGN, bsize,
1024
316k
      plane_bsize, xd->plane[plane].dst.buf, xd->plane[plane].dst.stride,
1025
316k
      inter_pred, inter_stride, intra_pred, intra_stride);
1026
316k
}
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
742k
                                    BLOCK_SIZE bsize) {
1033
742k
  assert(bsize < BLOCK_SIZES_ALL);
1034
742k
  if (is_cur_buf_hbd(xd)) {
1035
425k
    DECLARE_ALIGNED(16, uint16_t, intrapredictor[MAX_SB_SQUARE]);
1036
425k
    av1_build_intra_predictors_for_interintra(
1037
425k
        cm, xd, bsize, plane, ctx, CONVERT_TO_BYTEPTR(intrapredictor),
1038
425k
        MAX_SB_SIZE);
1039
425k
    av1_combine_interintra(xd, bsize, plane, pred, stride,
1040
425k
                           CONVERT_TO_BYTEPTR(intrapredictor), MAX_SB_SIZE);
1041
425k
  } else {
1042
316k
    DECLARE_ALIGNED(16, uint8_t, intrapredictor[MAX_SB_SQUARE]);
1043
316k
    av1_build_intra_predictors_for_interintra(cm, xd, bsize, plane, ctx,
1044
316k
                                              intrapredictor, MAX_SB_SIZE);
1045
316k
    av1_combine_interintra(xd, bsize, plane, pred, stride, intrapredictor,
1046
316k
                           MAX_SB_SIZE);
1047
316k
  }
1048
742k
}