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