]> granicus.if.org Git - libvpx/blob - vp9/encoder/vp9_pickmode.c
vp9: Speed >= 8: Enable simple_block_yrd speed feature.
[libvpx] / vp9 / encoder / vp9_pickmode.c
1 /*
2  *  Copyright (c) 2014 The WebM project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11 #include <assert.h>
12 #include <limits.h>
13 #include <math.h>
14 #include <stdio.h>
15
16 #include "./vp9_rtcd.h"
17 #include "./vpx_dsp_rtcd.h"
18
19 #include "vpx/vpx_codec.h"
20 #include "vpx_dsp/vpx_dsp_common.h"
21 #include "vpx_mem/vpx_mem.h"
22 #include "vpx_ports/mem.h"
23
24 #include "vp9/common/vp9_blockd.h"
25 #include "vp9/common/vp9_common.h"
26 #include "vp9/common/vp9_mvref_common.h"
27 #include "vp9/common/vp9_pred_common.h"
28 #include "vp9/common/vp9_reconinter.h"
29 #include "vp9/common/vp9_reconintra.h"
30 #include "vp9/common/vp9_scan.h"
31
32 #include "vp9/encoder/vp9_cost.h"
33 #include "vp9/encoder/vp9_encoder.h"
34 #include "vp9/encoder/vp9_pickmode.h"
35 #include "vp9/encoder/vp9_ratectrl.h"
36 #include "vp9/encoder/vp9_rd.h"
37
38 typedef struct {
39   uint8_t *data;
40   int stride;
41   int in_use;
42 } PRED_BUFFER;
43
44 static const int pos_shift_16x16[4][4] = {
45   { 9, 10, 13, 14 }, { 11, 12, 15, 16 }, { 17, 18, 21, 22 }, { 19, 20, 23, 24 }
46 };
47
48 static int mv_refs_rt(VP9_COMP *cpi, const VP9_COMMON *cm, const MACROBLOCK *x,
49                       const MACROBLOCKD *xd, const TileInfo *const tile,
50                       MODE_INFO *mi, MV_REFERENCE_FRAME ref_frame,
51                       int_mv *mv_ref_list, int_mv *base_mv, int mi_row,
52                       int mi_col, int use_base_mv) {
53   const int *ref_sign_bias = cm->ref_frame_sign_bias;
54   int i, refmv_count = 0;
55
56   const POSITION *const mv_ref_search = mv_ref_blocks[mi->sb_type];
57
58   int different_ref_found = 0;
59   int context_counter = 0;
60   int const_motion = 0;
61
62   // Blank the reference vector list
63   memset(mv_ref_list, 0, sizeof(*mv_ref_list) * MAX_MV_REF_CANDIDATES);
64
65   // The nearest 2 blocks are treated differently
66   // if the size < 8x8 we get the mv from the bmi substructure,
67   // and we also need to keep a mode count.
68   for (i = 0; i < 2; ++i) {
69     const POSITION *const mv_ref = &mv_ref_search[i];
70     if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
71       const MODE_INFO *const candidate_mi =
72           xd->mi[mv_ref->col + mv_ref->row * xd->mi_stride];
73       // Keep counts for entropy encoding.
74       context_counter += mode_2_counter[candidate_mi->mode];
75       different_ref_found = 1;
76
77       if (candidate_mi->ref_frame[0] == ref_frame)
78         ADD_MV_REF_LIST(get_sub_block_mv(candidate_mi, 0, mv_ref->col, -1),
79                         refmv_count, mv_ref_list, Done);
80     }
81   }
82
83   const_motion = 1;
84
85   // Check the rest of the neighbors in much the same way
86   // as before except we don't need to keep track of sub blocks or
87   // mode counts.
88   for (; i < MVREF_NEIGHBOURS && !refmv_count; ++i) {
89     const POSITION *const mv_ref = &mv_ref_search[i];
90     if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
91       const MODE_INFO *const candidate_mi =
92           xd->mi[mv_ref->col + mv_ref->row * xd->mi_stride];
93       different_ref_found = 1;
94
95       if (candidate_mi->ref_frame[0] == ref_frame)
96         ADD_MV_REF_LIST(candidate_mi->mv[0], refmv_count, mv_ref_list, Done);
97     }
98   }
99
100   // Since we couldn't find 2 mvs from the same reference frame
101   // go back through the neighbors and find motion vectors from
102   // different reference frames.
103   if (different_ref_found && !refmv_count) {
104     for (i = 0; i < MVREF_NEIGHBOURS; ++i) {
105       const POSITION *mv_ref = &mv_ref_search[i];
106       if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
107         const MODE_INFO *const candidate_mi =
108             xd->mi[mv_ref->col + mv_ref->row * xd->mi_stride];
109
110         // If the candidate is INTRA we don't want to consider its mv.
111         IF_DIFF_REF_FRAME_ADD_MV(candidate_mi, ref_frame, ref_sign_bias,
112                                  refmv_count, mv_ref_list, Done);
113       }
114     }
115   }
116   if (use_base_mv &&
117       !cpi->svc.layer_context[cpi->svc.temporal_layer_id].is_key_frame &&
118       ref_frame == LAST_FRAME) {
119     // Get base layer mv.
120     MV_REF *candidate =
121         &cm->prev_frame
122              ->mvs[(mi_col >> 1) + (mi_row >> 1) * (cm->mi_cols >> 1)];
123     if (candidate->mv[0].as_int != INVALID_MV) {
124       base_mv->as_mv.row = (candidate->mv[0].as_mv.row * 2);
125       base_mv->as_mv.col = (candidate->mv[0].as_mv.col * 2);
126       clamp_mv_ref(&base_mv->as_mv, xd);
127     } else {
128       base_mv->as_int = INVALID_MV;
129     }
130   }
131
132 Done:
133
134   x->mbmi_ext->mode_context[ref_frame] = counter_to_context[context_counter];
135
136   // Clamp vectors
137   for (i = 0; i < MAX_MV_REF_CANDIDATES; ++i)
138     clamp_mv_ref(&mv_ref_list[i].as_mv, xd);
139
140   return const_motion;
141 }
142
143 static int combined_motion_search(VP9_COMP *cpi, MACROBLOCK *x,
144                                   BLOCK_SIZE bsize, int mi_row, int mi_col,
145                                   int_mv *tmp_mv, int *rate_mv,
146                                   int64_t best_rd_sofar, int use_base_mv) {
147   MACROBLOCKD *xd = &x->e_mbd;
148   MODE_INFO *mi = xd->mi[0];
149   struct buf_2d backup_yv12[MAX_MB_PLANE] = { { 0, 0 } };
150   const int step_param = cpi->sf.mv.fullpel_search_step_param;
151   const int sadpb = x->sadperbit16;
152   MV mvp_full;
153   const int ref = mi->ref_frame[0];
154   const MV ref_mv = x->mbmi_ext->ref_mvs[ref][0].as_mv;
155   MV center_mv;
156   uint32_t dis;
157   int rate_mode;
158   const MvLimits tmp_mv_limits = x->mv_limits;
159   int rv = 0;
160   int cost_list[5];
161   const YV12_BUFFER_CONFIG *scaled_ref_frame =
162       vp9_get_scaled_ref_frame(cpi, ref);
163   if (scaled_ref_frame) {
164     int i;
165     // Swap out the reference frame for a version that's been scaled to
166     // match the resolution of the current frame, allowing the existing
167     // motion search code to be used without additional modifications.
168     for (i = 0; i < MAX_MB_PLANE; i++) backup_yv12[i] = xd->plane[i].pre[0];
169     vp9_setup_pre_planes(xd, 0, scaled_ref_frame, mi_row, mi_col, NULL);
170   }
171   vp9_set_mv_search_range(&x->mv_limits, &ref_mv);
172
173   assert(x->mv_best_ref_index[ref] <= 2);
174   if (x->mv_best_ref_index[ref] < 2)
175     mvp_full = x->mbmi_ext->ref_mvs[ref][x->mv_best_ref_index[ref]].as_mv;
176   else
177     mvp_full = x->pred_mv[ref];
178
179   mvp_full.col >>= 3;
180   mvp_full.row >>= 3;
181
182   if (!use_base_mv)
183     center_mv = ref_mv;
184   else
185     center_mv = tmp_mv->as_mv;
186
187   vp9_full_pixel_search(
188       cpi, x, bsize, &mvp_full, step_param, cpi->sf.mv.search_method, sadpb,
189       cond_cost_list(cpi, cost_list), &center_mv, &tmp_mv->as_mv, INT_MAX, 0);
190
191   x->mv_limits = tmp_mv_limits;
192
193   // calculate the bit cost on motion vector
194   mvp_full.row = tmp_mv->as_mv.row * 8;
195   mvp_full.col = tmp_mv->as_mv.col * 8;
196
197   *rate_mv = vp9_mv_bit_cost(&mvp_full, &ref_mv, x->nmvjointcost, x->mvcost,
198                              MV_COST_WEIGHT);
199
200   rate_mode =
201       cpi->inter_mode_cost[x->mbmi_ext->mode_context[ref]][INTER_OFFSET(NEWMV)];
202   rv =
203       !(RDCOST(x->rdmult, x->rddiv, (*rate_mv + rate_mode), 0) > best_rd_sofar);
204
205   if (rv) {
206     const int subpel_force_stop = use_base_mv && cpi->sf.base_mv_aggressive
207                                       ? 2
208                                       : cpi->sf.mv.subpel_force_stop;
209     cpi->find_fractional_mv_step(
210         x, &tmp_mv->as_mv, &ref_mv, cpi->common.allow_high_precision_mv,
211         x->errorperbit, &cpi->fn_ptr[bsize], subpel_force_stop,
212         cpi->sf.mv.subpel_iters_per_step, cond_cost_list(cpi, cost_list),
213         x->nmvjointcost, x->mvcost, &dis, &x->pred_sse[ref], NULL, 0, 0);
214     *rate_mv = vp9_mv_bit_cost(&tmp_mv->as_mv, &ref_mv, x->nmvjointcost,
215                                x->mvcost, MV_COST_WEIGHT);
216   }
217
218   if (scaled_ref_frame) {
219     int i;
220     for (i = 0; i < MAX_MB_PLANE; i++) xd->plane[i].pre[0] = backup_yv12[i];
221   }
222   return rv;
223 }
224
225 static void block_variance(const uint8_t *src, int src_stride,
226                            const uint8_t *ref, int ref_stride, int w, int h,
227                            unsigned int *sse, int *sum, int block_size,
228 #if CONFIG_VP9_HIGHBITDEPTH
229                            int use_highbitdepth, vpx_bit_depth_t bd,
230 #endif
231                            uint32_t *sse8x8, int *sum8x8, uint32_t *var8x8) {
232   int i, j, k = 0;
233
234   *sse = 0;
235   *sum = 0;
236
237   for (i = 0; i < h; i += block_size) {
238     for (j = 0; j < w; j += block_size) {
239 #if CONFIG_VP9_HIGHBITDEPTH
240       if (use_highbitdepth) {
241         switch (bd) {
242           case VPX_BITS_8:
243             vpx_highbd_8_get8x8var(src + src_stride * i + j, src_stride,
244                                    ref + ref_stride * i + j, ref_stride,
245                                    &sse8x8[k], &sum8x8[k]);
246             break;
247           case VPX_BITS_10:
248             vpx_highbd_10_get8x8var(src + src_stride * i + j, src_stride,
249                                     ref + ref_stride * i + j, ref_stride,
250                                     &sse8x8[k], &sum8x8[k]);
251             break;
252           case VPX_BITS_12:
253             vpx_highbd_12_get8x8var(src + src_stride * i + j, src_stride,
254                                     ref + ref_stride * i + j, ref_stride,
255                                     &sse8x8[k], &sum8x8[k]);
256             break;
257         }
258       } else {
259         vpx_get8x8var(src + src_stride * i + j, src_stride,
260                       ref + ref_stride * i + j, ref_stride, &sse8x8[k],
261                       &sum8x8[k]);
262       }
263 #else
264       vpx_get8x8var(src + src_stride * i + j, src_stride,
265                     ref + ref_stride * i + j, ref_stride, &sse8x8[k],
266                     &sum8x8[k]);
267 #endif
268       *sse += sse8x8[k];
269       *sum += sum8x8[k];
270       var8x8[k] = sse8x8[k] - (uint32_t)(((int64_t)sum8x8[k] * sum8x8[k]) >> 6);
271       k++;
272     }
273   }
274 }
275
276 static void calculate_variance(int bw, int bh, TX_SIZE tx_size,
277                                unsigned int *sse_i, int *sum_i,
278                                unsigned int *var_o, unsigned int *sse_o,
279                                int *sum_o) {
280   const BLOCK_SIZE unit_size = txsize_to_bsize[tx_size];
281   const int nw = 1 << (bw - b_width_log2_lookup[unit_size]);
282   const int nh = 1 << (bh - b_height_log2_lookup[unit_size]);
283   int i, j, k = 0;
284
285   for (i = 0; i < nh; i += 2) {
286     for (j = 0; j < nw; j += 2) {
287       sse_o[k] = sse_i[i * nw + j] + sse_i[i * nw + j + 1] +
288                  sse_i[(i + 1) * nw + j] + sse_i[(i + 1) * nw + j + 1];
289       sum_o[k] = sum_i[i * nw + j] + sum_i[i * nw + j + 1] +
290                  sum_i[(i + 1) * nw + j] + sum_i[(i + 1) * nw + j + 1];
291       var_o[k] = sse_o[k] - (uint32_t)(((int64_t)sum_o[k] * sum_o[k]) >>
292                                        (b_width_log2_lookup[unit_size] +
293                                         b_height_log2_lookup[unit_size] + 6));
294       k++;
295     }
296   }
297 }
298
299 // Adjust the ac_thr according to speed, width, height and normalized sum
300 static int ac_thr_factor(const int speed, const int width, const int height,
301                          const int norm_sum) {
302   if (speed >= 8 && norm_sum < 5) {
303     if (width <= 640 && height <= 480)
304       return 4;
305     else
306       return 2;
307   }
308   return 1;
309 }
310
311 static void model_rd_for_sb_y_large(VP9_COMP *cpi, BLOCK_SIZE bsize,
312                                     MACROBLOCK *x, MACROBLOCKD *xd,
313                                     int *out_rate_sum, int64_t *out_dist_sum,
314                                     unsigned int *var_y, unsigned int *sse_y,
315                                     int mi_row, int mi_col, int *early_term) {
316   // Note our transform coeffs are 8 times an orthogonal transform.
317   // Hence quantizer step is also 8 times. To get effective quantizer
318   // we need to divide by 8 before sending to modeling function.
319   unsigned int sse;
320   int rate;
321   int64_t dist;
322   struct macroblock_plane *const p = &x->plane[0];
323   struct macroblockd_plane *const pd = &xd->plane[0];
324   const uint32_t dc_quant = pd->dequant[0];
325   const uint32_t ac_quant = pd->dequant[1];
326   const int64_t dc_thr = dc_quant * dc_quant >> 6;
327   int64_t ac_thr = ac_quant * ac_quant >> 6;
328   unsigned int var;
329   int sum;
330   int skip_dc = 0;
331
332   const int bw = b_width_log2_lookup[bsize];
333   const int bh = b_height_log2_lookup[bsize];
334   const int num8x8 = 1 << (bw + bh - 2);
335   unsigned int sse8x8[64] = { 0 };
336   int sum8x8[64] = { 0 };
337   unsigned int var8x8[64] = { 0 };
338   TX_SIZE tx_size;
339   int i, k;
340 #if CONFIG_VP9_HIGHBITDEPTH
341   const vpx_bit_depth_t bd = cpi->common.bit_depth;
342 #endif
343   // Calculate variance for whole partition, and also save 8x8 blocks' variance
344   // to be used in following transform skipping test.
345   block_variance(p->src.buf, p->src.stride, pd->dst.buf, pd->dst.stride,
346                  4 << bw, 4 << bh, &sse, &sum, 8,
347 #if CONFIG_VP9_HIGHBITDEPTH
348                  cpi->common.use_highbitdepth, bd,
349 #endif
350                  sse8x8, sum8x8, var8x8);
351   var = sse - (unsigned int)(((int64_t)sum * sum) >> (bw + bh + 4));
352
353   *var_y = var;
354   *sse_y = sse;
355
356 #if CONFIG_VP9_TEMPORAL_DENOISING
357   if (cpi->oxcf.noise_sensitivity > 0)
358     ac_thr = vp9_scale_acskip_thresh(ac_thr, cpi->denoiser.denoising_level,
359                                      (abs(sum) >> (bw + bh)));
360   else
361     ac_thr *= ac_thr_factor(cpi->oxcf.speed, cpi->common.width,
362                             cpi->common.height, abs(sum) >> (bw + bh));
363 #else
364   ac_thr *= ac_thr_factor(cpi->oxcf.speed, cpi->common.width,
365                           cpi->common.height, abs(sum) >> (bw + bh));
366 #endif
367
368   if (cpi->common.tx_mode == TX_MODE_SELECT) {
369     if (sse > (var << 2))
370       tx_size = VPXMIN(max_txsize_lookup[bsize],
371                        tx_mode_to_biggest_tx_size[cpi->common.tx_mode]);
372     else
373       tx_size = TX_8X8;
374
375     if (cpi->oxcf.aq_mode == CYCLIC_REFRESH_AQ &&
376         cyclic_refresh_segment_id_boosted(xd->mi[0]->segment_id))
377       tx_size = TX_8X8;
378     else if (tx_size > TX_16X16)
379       tx_size = TX_16X16;
380   } else {
381     tx_size = VPXMIN(max_txsize_lookup[bsize],
382                      tx_mode_to_biggest_tx_size[cpi->common.tx_mode]);
383   }
384
385   assert(tx_size >= TX_8X8);
386   xd->mi[0]->tx_size = tx_size;
387
388   // Evaluate if the partition block is a skippable block in Y plane.
389   {
390     unsigned int sse16x16[16] = { 0 };
391     int sum16x16[16] = { 0 };
392     unsigned int var16x16[16] = { 0 };
393     const int num16x16 = num8x8 >> 2;
394
395     unsigned int sse32x32[4] = { 0 };
396     int sum32x32[4] = { 0 };
397     unsigned int var32x32[4] = { 0 };
398     const int num32x32 = num8x8 >> 4;
399
400     int ac_test = 1;
401     int dc_test = 1;
402     const int num = (tx_size == TX_8X8)
403                         ? num8x8
404                         : ((tx_size == TX_16X16) ? num16x16 : num32x32);
405     const unsigned int *sse_tx =
406         (tx_size == TX_8X8) ? sse8x8
407                             : ((tx_size == TX_16X16) ? sse16x16 : sse32x32);
408     const unsigned int *var_tx =
409         (tx_size == TX_8X8) ? var8x8
410                             : ((tx_size == TX_16X16) ? var16x16 : var32x32);
411
412     // Calculate variance if tx_size > TX_8X8
413     if (tx_size >= TX_16X16)
414       calculate_variance(bw, bh, TX_8X8, sse8x8, sum8x8, var16x16, sse16x16,
415                          sum16x16);
416     if (tx_size == TX_32X32)
417       calculate_variance(bw, bh, TX_16X16, sse16x16, sum16x16, var32x32,
418                          sse32x32, sum32x32);
419
420     // Skipping test
421     x->skip_txfm[0] = SKIP_TXFM_NONE;
422     for (k = 0; k < num; k++)
423       // Check if all ac coefficients can be quantized to zero.
424       if (!(var_tx[k] < ac_thr || var == 0)) {
425         ac_test = 0;
426         break;
427       }
428
429     for (k = 0; k < num; k++)
430       // Check if dc coefficient can be quantized to zero.
431       if (!(sse_tx[k] - var_tx[k] < dc_thr || sse == var)) {
432         dc_test = 0;
433         break;
434       }
435
436     if (ac_test) {
437       x->skip_txfm[0] = SKIP_TXFM_AC_ONLY;
438
439       if (dc_test) x->skip_txfm[0] = SKIP_TXFM_AC_DC;
440     } else if (dc_test) {
441       skip_dc = 1;
442     }
443   }
444
445   if (x->skip_txfm[0] == SKIP_TXFM_AC_DC) {
446     int skip_uv[2] = { 0 };
447     unsigned int var_uv[2];
448     unsigned int sse_uv[2];
449
450     *out_rate_sum = 0;
451     *out_dist_sum = sse << 4;
452
453     // Transform skipping test in UV planes.
454     for (i = 1; i <= 2; i++) {
455       struct macroblock_plane *const p = &x->plane[i];
456       struct macroblockd_plane *const pd = &xd->plane[i];
457       const TX_SIZE uv_tx_size = get_uv_tx_size(xd->mi[0], pd);
458       const BLOCK_SIZE unit_size = txsize_to_bsize[uv_tx_size];
459       const BLOCK_SIZE uv_bsize = get_plane_block_size(bsize, pd);
460       const int uv_bw = b_width_log2_lookup[uv_bsize];
461       const int uv_bh = b_height_log2_lookup[uv_bsize];
462       const int sf = (uv_bw - b_width_log2_lookup[unit_size]) +
463                      (uv_bh - b_height_log2_lookup[unit_size]);
464       const uint32_t uv_dc_thr = pd->dequant[0] * pd->dequant[0] >> (6 - sf);
465       const uint32_t uv_ac_thr = pd->dequant[1] * pd->dequant[1] >> (6 - sf);
466       int j = i - 1;
467
468       vp9_build_inter_predictors_sbp(xd, mi_row, mi_col, bsize, i);
469       var_uv[j] = cpi->fn_ptr[uv_bsize].vf(
470           p->src.buf, p->src.stride, pd->dst.buf, pd->dst.stride, &sse_uv[j]);
471
472       if ((var_uv[j] < uv_ac_thr || var_uv[j] == 0) &&
473           (sse_uv[j] - var_uv[j] < uv_dc_thr || sse_uv[j] == var_uv[j]))
474         skip_uv[j] = 1;
475       else
476         break;
477     }
478
479     // If the transform in YUV planes are skippable, the mode search checks
480     // fewer inter modes and doesn't check intra modes.
481     if (skip_uv[0] & skip_uv[1]) {
482       *early_term = 1;
483     }
484
485     return;
486   }
487
488   if (!skip_dc) {
489 #if CONFIG_VP9_HIGHBITDEPTH
490     vp9_model_rd_from_var_lapndz(sse - var, num_pels_log2_lookup[bsize],
491                                  dc_quant >> (xd->bd - 5), &rate, &dist);
492 #else
493     vp9_model_rd_from_var_lapndz(sse - var, num_pels_log2_lookup[bsize],
494                                  dc_quant >> 3, &rate, &dist);
495 #endif  // CONFIG_VP9_HIGHBITDEPTH
496   }
497
498   if (!skip_dc) {
499     *out_rate_sum = rate >> 1;
500     *out_dist_sum = dist << 3;
501   } else {
502     *out_rate_sum = 0;
503     *out_dist_sum = (sse - var) << 4;
504   }
505
506 #if CONFIG_VP9_HIGHBITDEPTH
507   vp9_model_rd_from_var_lapndz(var, num_pels_log2_lookup[bsize],
508                                ac_quant >> (xd->bd - 5), &rate, &dist);
509 #else
510   vp9_model_rd_from_var_lapndz(var, num_pels_log2_lookup[bsize], ac_quant >> 3,
511                                &rate, &dist);
512 #endif  // CONFIG_VP9_HIGHBITDEPTH
513
514   *out_rate_sum += rate;
515   *out_dist_sum += dist << 4;
516 }
517
518 static void model_rd_for_sb_y(VP9_COMP *cpi, BLOCK_SIZE bsize, MACROBLOCK *x,
519                               MACROBLOCKD *xd, int *out_rate_sum,
520                               int64_t *out_dist_sum, unsigned int *var_y,
521                               unsigned int *sse_y) {
522   // Note our transform coeffs are 8 times an orthogonal transform.
523   // Hence quantizer step is also 8 times. To get effective quantizer
524   // we need to divide by 8 before sending to modeling function.
525   unsigned int sse;
526   int rate;
527   int64_t dist;
528   struct macroblock_plane *const p = &x->plane[0];
529   struct macroblockd_plane *const pd = &xd->plane[0];
530   const int64_t dc_thr = p->quant_thred[0] >> 6;
531   const int64_t ac_thr = p->quant_thred[1] >> 6;
532   const uint32_t dc_quant = pd->dequant[0];
533   const uint32_t ac_quant = pd->dequant[1];
534   unsigned int var = cpi->fn_ptr[bsize].vf(p->src.buf, p->src.stride,
535                                            pd->dst.buf, pd->dst.stride, &sse);
536   int skip_dc = 0;
537
538   *var_y = var;
539   *sse_y = sse;
540
541   if (cpi->common.tx_mode == TX_MODE_SELECT) {
542     if (sse > (var << 2))
543       xd->mi[0]->tx_size =
544           VPXMIN(max_txsize_lookup[bsize],
545                  tx_mode_to_biggest_tx_size[cpi->common.tx_mode]);
546     else
547       xd->mi[0]->tx_size = TX_8X8;
548
549     if (cpi->oxcf.aq_mode == CYCLIC_REFRESH_AQ &&
550         cyclic_refresh_segment_id_boosted(xd->mi[0]->segment_id))
551       xd->mi[0]->tx_size = TX_8X8;
552     else if (xd->mi[0]->tx_size > TX_16X16)
553       xd->mi[0]->tx_size = TX_16X16;
554   } else {
555     xd->mi[0]->tx_size =
556         VPXMIN(max_txsize_lookup[bsize],
557                tx_mode_to_biggest_tx_size[cpi->common.tx_mode]);
558   }
559
560   // Evaluate if the partition block is a skippable block in Y plane.
561   {
562     const BLOCK_SIZE unit_size = txsize_to_bsize[xd->mi[0]->tx_size];
563     const unsigned int num_blk_log2 =
564         (b_width_log2_lookup[bsize] - b_width_log2_lookup[unit_size]) +
565         (b_height_log2_lookup[bsize] - b_height_log2_lookup[unit_size]);
566     const unsigned int sse_tx = sse >> num_blk_log2;
567     const unsigned int var_tx = var >> num_blk_log2;
568
569     x->skip_txfm[0] = SKIP_TXFM_NONE;
570     // Check if all ac coefficients can be quantized to zero.
571     if (var_tx < ac_thr || var == 0) {
572       x->skip_txfm[0] = SKIP_TXFM_AC_ONLY;
573       // Check if dc coefficient can be quantized to zero.
574       if (sse_tx - var_tx < dc_thr || sse == var)
575         x->skip_txfm[0] = SKIP_TXFM_AC_DC;
576     } else {
577       if (sse_tx - var_tx < dc_thr || sse == var) skip_dc = 1;
578     }
579   }
580
581   if (x->skip_txfm[0] == SKIP_TXFM_AC_DC) {
582     *out_rate_sum = 0;
583     *out_dist_sum = sse << 4;
584     return;
585   }
586
587   if (!skip_dc) {
588 #if CONFIG_VP9_HIGHBITDEPTH
589     vp9_model_rd_from_var_lapndz(sse - var, num_pels_log2_lookup[bsize],
590                                  dc_quant >> (xd->bd - 5), &rate, &dist);
591 #else
592     vp9_model_rd_from_var_lapndz(sse - var, num_pels_log2_lookup[bsize],
593                                  dc_quant >> 3, &rate, &dist);
594 #endif  // CONFIG_VP9_HIGHBITDEPTH
595   }
596
597   if (!skip_dc) {
598     *out_rate_sum = rate >> 1;
599     *out_dist_sum = dist << 3;
600   } else {
601     *out_rate_sum = 0;
602     *out_dist_sum = (sse - var) << 4;
603   }
604
605 #if CONFIG_VP9_HIGHBITDEPTH
606   vp9_model_rd_from_var_lapndz(var, num_pels_log2_lookup[bsize],
607                                ac_quant >> (xd->bd - 5), &rate, &dist);
608 #else
609   vp9_model_rd_from_var_lapndz(var, num_pels_log2_lookup[bsize], ac_quant >> 3,
610                                &rate, &dist);
611 #endif  // CONFIG_VP9_HIGHBITDEPTH
612
613   *out_rate_sum += rate;
614   *out_dist_sum += dist << 4;
615 }
616
617 static void block_yrd(VP9_COMP *cpi, MACROBLOCK *x, RD_COST *this_rdc,
618                       int *skippable, int64_t *sse, BLOCK_SIZE bsize,
619                       TX_SIZE tx_size) {
620   MACROBLOCKD *xd = &x->e_mbd;
621   const struct macroblockd_plane *pd = &xd->plane[0];
622   struct macroblock_plane *const p = &x->plane[0];
623   const int num_4x4_w = num_4x4_blocks_wide_lookup[bsize];
624   const int num_4x4_h = num_4x4_blocks_high_lookup[bsize];
625   const int step = 1 << (tx_size << 1);
626   const int block_step = (1 << tx_size);
627   int block = 0, r, c;
628   const int max_blocks_wide =
629       num_4x4_w + (xd->mb_to_right_edge >= 0 ? 0 : xd->mb_to_right_edge >> 5);
630   const int max_blocks_high =
631       num_4x4_h + (xd->mb_to_bottom_edge >= 0 ? 0 : xd->mb_to_bottom_edge >> 5);
632   int eob_cost = 0;
633   const int bw = 4 * num_4x4_w;
634   const int bh = 4 * num_4x4_h;
635
636 #if CONFIG_VP9_HIGHBITDEPTH
637   // TODO(jingning): Implement the high bit-depth Hadamard transforms and
638   // remove this check condition.
639   // TODO(marpan): Use this path (model_rd) for 8bit under certain conditions
640   // for now, as the vp9_quantize_fp below for highbitdepth build is slow.
641   if (xd->bd != 8 ||
642       (cpi->oxcf.speed > 5 && cpi->common.frame_type != KEY_FRAME &&
643        bsize < BLOCK_32X32)) {
644     unsigned int var_y, sse_y;
645     (void)tx_size;
646     model_rd_for_sb_y(cpi, bsize, x, xd, &this_rdc->rate, &this_rdc->dist,
647                       &var_y, &sse_y);
648     *sse = INT_MAX;
649     *skippable = 0;
650     return;
651   }
652 #endif
653
654   if (cpi->sf.use_simple_block_yrd && cpi->common.frame_type != KEY_FRAME &&
655       bsize < BLOCK_32X32) {
656     unsigned int var_y, sse_y;
657     (void)tx_size;
658     model_rd_for_sb_y(cpi, bsize, x, xd, &this_rdc->rate, &this_rdc->dist,
659                       &var_y, &sse_y);
660     *sse = INT_MAX;
661     *skippable = 0;
662     return;
663   }
664
665   (void)cpi;
666
667   // The max tx_size passed in is TX_16X16.
668   assert(tx_size != TX_32X32);
669
670   vpx_subtract_block(bh, bw, p->src_diff, bw, p->src.buf, p->src.stride,
671                      pd->dst.buf, pd->dst.stride);
672   *skippable = 1;
673   // Keep track of the row and column of the blocks we use so that we know
674   // if we are in the unrestricted motion border.
675   for (r = 0; r < max_blocks_high; r += block_step) {
676     for (c = 0; c < num_4x4_w; c += block_step) {
677       if (c < max_blocks_wide) {
678         const scan_order *const scan_order = &vp9_default_scan_orders[tx_size];
679         tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block);
680         tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block);
681         tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block);
682         uint16_t *const eob = &p->eobs[block];
683         const int diff_stride = bw;
684         const int16_t *src_diff;
685         src_diff = &p->src_diff[(r * diff_stride + c) << 2];
686
687         switch (tx_size) {
688           case TX_16X16:
689             vpx_hadamard_16x16(src_diff, diff_stride, coeff);
690             vp9_quantize_fp(coeff, 256, x->skip_block, p->round_fp, p->quant_fp,
691                             qcoeff, dqcoeff, pd->dequant, eob, scan_order->scan,
692                             scan_order->iscan);
693             break;
694           case TX_8X8:
695             vpx_hadamard_8x8(src_diff, diff_stride, coeff);
696             vp9_quantize_fp(coeff, 64, x->skip_block, p->round_fp, p->quant_fp,
697                             qcoeff, dqcoeff, pd->dequant, eob, scan_order->scan,
698                             scan_order->iscan);
699             break;
700           case TX_4X4:
701             x->fwd_txm4x4(src_diff, coeff, diff_stride);
702             vp9_quantize_fp(coeff, 16, x->skip_block, p->round_fp, p->quant_fp,
703                             qcoeff, dqcoeff, pd->dequant, eob, scan_order->scan,
704                             scan_order->iscan);
705             break;
706           default: assert(0); break;
707         }
708         *skippable &= (*eob == 0);
709         eob_cost += 1;
710       }
711       block += step;
712     }
713   }
714
715   this_rdc->rate = 0;
716   if (*sse < INT64_MAX) {
717     *sse = (*sse << 6) >> 2;
718     if (*skippable) {
719       this_rdc->dist = *sse;
720       return;
721     }
722   }
723
724   block = 0;
725   this_rdc->dist = 0;
726   for (r = 0; r < max_blocks_high; r += block_step) {
727     for (c = 0; c < num_4x4_w; c += block_step) {
728       if (c < max_blocks_wide) {
729         tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block);
730         tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block);
731         tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block);
732         uint16_t *const eob = &p->eobs[block];
733
734         if (*eob == 1)
735           this_rdc->rate += (int)abs(qcoeff[0]);
736         else if (*eob > 1)
737           this_rdc->rate += vpx_satd(qcoeff, step << 4);
738
739         this_rdc->dist += vp9_block_error_fp(coeff, dqcoeff, step << 4) >> 2;
740       }
741       block += step;
742     }
743   }
744
745   // If skippable is set, rate gets clobbered later.
746   this_rdc->rate <<= (2 + VP9_PROB_COST_SHIFT);
747   this_rdc->rate += (eob_cost << VP9_PROB_COST_SHIFT);
748 }
749
750 static void model_rd_for_sb_uv(VP9_COMP *cpi, BLOCK_SIZE plane_bsize,
751                                MACROBLOCK *x, MACROBLOCKD *xd,
752                                RD_COST *this_rdc, unsigned int *var_y,
753                                unsigned int *sse_y, int start_plane,
754                                int stop_plane) {
755   // Note our transform coeffs are 8 times an orthogonal transform.
756   // Hence quantizer step is also 8 times. To get effective quantizer
757   // we need to divide by 8 before sending to modeling function.
758   unsigned int sse;
759   int rate;
760   int64_t dist;
761   int i;
762 #if CONFIG_VP9_HIGHBITDEPTH
763   uint64_t tot_var = *var_y;
764   uint64_t tot_sse = *sse_y;
765 #else
766   uint32_t tot_var = *var_y;
767   uint32_t tot_sse = *sse_y;
768 #endif
769
770   this_rdc->rate = 0;
771   this_rdc->dist = 0;
772
773   for (i = start_plane; i <= stop_plane; ++i) {
774     struct macroblock_plane *const p = &x->plane[i];
775     struct macroblockd_plane *const pd = &xd->plane[i];
776     const uint32_t dc_quant = pd->dequant[0];
777     const uint32_t ac_quant = pd->dequant[1];
778     const BLOCK_SIZE bs = plane_bsize;
779     unsigned int var;
780     if (!x->color_sensitivity[i - 1]) continue;
781
782     var = cpi->fn_ptr[bs].vf(p->src.buf, p->src.stride, pd->dst.buf,
783                              pd->dst.stride, &sse);
784     assert(sse >= var);
785     tot_var += var;
786     tot_sse += sse;
787
788 #if CONFIG_VP9_HIGHBITDEPTH
789     vp9_model_rd_from_var_lapndz(sse - var, num_pels_log2_lookup[bs],
790                                  dc_quant >> (xd->bd - 5), &rate, &dist);
791 #else
792     vp9_model_rd_from_var_lapndz(sse - var, num_pels_log2_lookup[bs],
793                                  dc_quant >> 3, &rate, &dist);
794 #endif  // CONFIG_VP9_HIGHBITDEPTH
795
796     this_rdc->rate += rate >> 1;
797     this_rdc->dist += dist << 3;
798
799 #if CONFIG_VP9_HIGHBITDEPTH
800     vp9_model_rd_from_var_lapndz(var, num_pels_log2_lookup[bs],
801                                  ac_quant >> (xd->bd - 5), &rate, &dist);
802 #else
803     vp9_model_rd_from_var_lapndz(var, num_pels_log2_lookup[bs], ac_quant >> 3,
804                                  &rate, &dist);
805 #endif  // CONFIG_VP9_HIGHBITDEPTH
806
807     this_rdc->rate += rate;
808     this_rdc->dist += dist << 4;
809   }
810
811 #if CONFIG_VP9_HIGHBITDEPTH
812   *var_y = tot_var > UINT32_MAX ? UINT32_MAX : (uint32_t)tot_var;
813   *sse_y = tot_sse > UINT32_MAX ? UINT32_MAX : (uint32_t)tot_sse;
814 #else
815   *var_y = tot_var;
816   *sse_y = tot_sse;
817 #endif
818 }
819
820 static int get_pred_buffer(PRED_BUFFER *p, int len) {
821   int i;
822
823   for (i = 0; i < len; i++) {
824     if (!p[i].in_use) {
825       p[i].in_use = 1;
826       return i;
827     }
828   }
829   return -1;
830 }
831
832 static void free_pred_buffer(PRED_BUFFER *p) {
833   if (p != NULL) p->in_use = 0;
834 }
835
836 static void encode_breakout_test(VP9_COMP *cpi, MACROBLOCK *x, BLOCK_SIZE bsize,
837                                  int mi_row, int mi_col,
838                                  MV_REFERENCE_FRAME ref_frame,
839                                  PREDICTION_MODE this_mode, unsigned int var_y,
840                                  unsigned int sse_y,
841                                  struct buf_2d yv12_mb[][MAX_MB_PLANE],
842                                  int *rate, int64_t *dist) {
843   MACROBLOCKD *xd = &x->e_mbd;
844   MODE_INFO *const mi = xd->mi[0];
845   const BLOCK_SIZE uv_size = get_plane_block_size(bsize, &xd->plane[1]);
846   unsigned int var = var_y, sse = sse_y;
847   // Skipping threshold for ac.
848   unsigned int thresh_ac;
849   // Skipping threshold for dc.
850   unsigned int thresh_dc;
851   int motion_low = 1;
852   if (mi->mv[0].as_mv.row > 64 || mi->mv[0].as_mv.row < -64 ||
853       mi->mv[0].as_mv.col > 64 || mi->mv[0].as_mv.col < -64)
854     motion_low = 0;
855   if (x->encode_breakout > 0 && motion_low == 1) {
856     // Set a maximum for threshold to avoid big PSNR loss in low bit rate
857     // case. Use extreme low threshold for static frames to limit
858     // skipping.
859     const unsigned int max_thresh = 36000;
860     // The encode_breakout input
861     const unsigned int min_thresh =
862         VPXMIN(((unsigned int)x->encode_breakout << 4), max_thresh);
863 #if CONFIG_VP9_HIGHBITDEPTH
864     const int shift = (xd->bd << 1) - 16;
865 #endif
866
867     // Calculate threshold according to dequant value.
868     thresh_ac = (xd->plane[0].dequant[1] * xd->plane[0].dequant[1]) >> 3;
869 #if CONFIG_VP9_HIGHBITDEPTH
870     if ((xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) && shift > 0) {
871       thresh_ac = ROUND_POWER_OF_TWO(thresh_ac, shift);
872     }
873 #endif  // CONFIG_VP9_HIGHBITDEPTH
874     thresh_ac = clamp(thresh_ac, min_thresh, max_thresh);
875
876     // Adjust ac threshold according to partition size.
877     thresh_ac >>=
878         8 - (b_width_log2_lookup[bsize] + b_height_log2_lookup[bsize]);
879
880     thresh_dc = (xd->plane[0].dequant[0] * xd->plane[0].dequant[0] >> 6);
881 #if CONFIG_VP9_HIGHBITDEPTH
882     if ((xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) && shift > 0) {
883       thresh_dc = ROUND_POWER_OF_TWO(thresh_dc, shift);
884     }
885 #endif  // CONFIG_VP9_HIGHBITDEPTH
886   } else {
887     thresh_ac = 0;
888     thresh_dc = 0;
889   }
890
891   // Y skipping condition checking for ac and dc.
892   if (var <= thresh_ac && (sse - var) <= thresh_dc) {
893     unsigned int sse_u, sse_v;
894     unsigned int var_u, var_v;
895     unsigned int thresh_ac_uv = thresh_ac;
896     unsigned int thresh_dc_uv = thresh_dc;
897     if (x->sb_is_skin) {
898       thresh_ac_uv = 0;
899       thresh_dc_uv = 0;
900     }
901
902     // Skip UV prediction unless breakout is zero (lossless) to save
903     // computation with low impact on the result
904     if (x->encode_breakout == 0) {
905       xd->plane[1].pre[0] = yv12_mb[ref_frame][1];
906       xd->plane[2].pre[0] = yv12_mb[ref_frame][2];
907       vp9_build_inter_predictors_sbuv(xd, mi_row, mi_col, bsize);
908     }
909
910     var_u = cpi->fn_ptr[uv_size].vf(x->plane[1].src.buf, x->plane[1].src.stride,
911                                     xd->plane[1].dst.buf,
912                                     xd->plane[1].dst.stride, &sse_u);
913
914     // U skipping condition checking
915     if (((var_u << 2) <= thresh_ac_uv) && (sse_u - var_u <= thresh_dc_uv)) {
916       var_v = cpi->fn_ptr[uv_size].vf(
917           x->plane[2].src.buf, x->plane[2].src.stride, xd->plane[2].dst.buf,
918           xd->plane[2].dst.stride, &sse_v);
919
920       // V skipping condition checking
921       if (((var_v << 2) <= thresh_ac_uv) && (sse_v - var_v <= thresh_dc_uv)) {
922         x->skip = 1;
923
924         // The cost of skip bit needs to be added.
925         *rate = cpi->inter_mode_cost[x->mbmi_ext->mode_context[ref_frame]]
926                                     [INTER_OFFSET(this_mode)];
927
928         // More on this part of rate
929         // rate += vp9_cost_bit(vp9_get_skip_prob(cm, xd), 1);
930
931         // Scaling factor for SSE from spatial domain to frequency
932         // domain is 16. Adjust distortion accordingly.
933         // TODO(yunqingwang): In this function, only y-plane dist is
934         // calculated.
935         *dist = (sse << 4);  // + ((sse_u + sse_v) << 4);
936
937         // *disable_skip = 1;
938       }
939     }
940   }
941 }
942
943 struct estimate_block_intra_args {
944   VP9_COMP *cpi;
945   MACROBLOCK *x;
946   PREDICTION_MODE mode;
947   int skippable;
948   RD_COST *rdc;
949 };
950
951 static void estimate_block_intra(int plane, int block, int row, int col,
952                                  BLOCK_SIZE plane_bsize, TX_SIZE tx_size,
953                                  void *arg) {
954   struct estimate_block_intra_args *const args = arg;
955   VP9_COMP *const cpi = args->cpi;
956   MACROBLOCK *const x = args->x;
957   MACROBLOCKD *const xd = &x->e_mbd;
958   struct macroblock_plane *const p = &x->plane[0];
959   struct macroblockd_plane *const pd = &xd->plane[0];
960   const BLOCK_SIZE bsize_tx = txsize_to_bsize[tx_size];
961   uint8_t *const src_buf_base = p->src.buf;
962   uint8_t *const dst_buf_base = pd->dst.buf;
963   const int src_stride = p->src.stride;
964   const int dst_stride = pd->dst.stride;
965   RD_COST this_rdc;
966
967   (void)block;
968
969   p->src.buf = &src_buf_base[4 * (row * src_stride + col)];
970   pd->dst.buf = &dst_buf_base[4 * (row * dst_stride + col)];
971   // Use source buffer as an approximation for the fully reconstructed buffer.
972   vp9_predict_intra_block(xd, b_width_log2_lookup[plane_bsize], tx_size,
973                           args->mode, x->skip_encode ? p->src.buf : pd->dst.buf,
974                           x->skip_encode ? src_stride : dst_stride, pd->dst.buf,
975                           dst_stride, col, row, plane);
976
977   if (plane == 0) {
978     int64_t this_sse = INT64_MAX;
979     // TODO(jingning): This needs further refactoring.
980     block_yrd(cpi, x, &this_rdc, &args->skippable, &this_sse, bsize_tx,
981               VPXMIN(tx_size, TX_16X16));
982   } else {
983     unsigned int var = 0;
984     unsigned int sse = 0;
985     model_rd_for_sb_uv(cpi, plane_bsize, x, xd, &this_rdc, &var, &sse, plane,
986                        plane);
987   }
988
989   p->src.buf = src_buf_base;
990   pd->dst.buf = dst_buf_base;
991   args->rdc->rate += this_rdc.rate;
992   args->rdc->dist += this_rdc.dist;
993 }
994
995 static const THR_MODES mode_idx[MAX_REF_FRAMES][4] = {
996   { THR_DC, THR_V_PRED, THR_H_PRED, THR_TM },
997   { THR_NEARESTMV, THR_NEARMV, THR_ZEROMV, THR_NEWMV },
998   { THR_NEARESTG, THR_NEARG, THR_ZEROG, THR_NEWG },
999   { THR_NEARESTA, THR_NEARA, THR_ZEROA, THR_NEWA },
1000 };
1001
1002 static const PREDICTION_MODE intra_mode_list[] = { DC_PRED, V_PRED, H_PRED,
1003                                                    TM_PRED };
1004
1005 static int mode_offset(const PREDICTION_MODE mode) {
1006   if (mode >= NEARESTMV) {
1007     return INTER_OFFSET(mode);
1008   } else {
1009     switch (mode) {
1010       case DC_PRED: return 0;
1011       case V_PRED: return 1;
1012       case H_PRED: return 2;
1013       case TM_PRED: return 3;
1014       default: return -1;
1015     }
1016   }
1017 }
1018
1019 static INLINE void update_thresh_freq_fact(
1020     VP9_COMP *cpi, TileDataEnc *tile_data, int source_variance,
1021     BLOCK_SIZE bsize, MV_REFERENCE_FRAME ref_frame, THR_MODES best_mode_idx,
1022     PREDICTION_MODE mode) {
1023   THR_MODES thr_mode_idx = mode_idx[ref_frame][mode_offset(mode)];
1024   int *freq_fact = &tile_data->thresh_freq_fact[bsize][thr_mode_idx];
1025   if (thr_mode_idx == best_mode_idx)
1026     *freq_fact -= (*freq_fact >> 4);
1027   else if (cpi->sf.limit_newmv_early_exit && mode == NEWMV &&
1028            ref_frame == LAST_FRAME && source_variance < 5) {
1029     *freq_fact = VPXMIN(*freq_fact + RD_THRESH_INC, 32);
1030   } else {
1031     *freq_fact = VPXMIN(*freq_fact + RD_THRESH_INC,
1032                         cpi->sf.adaptive_rd_thresh * RD_THRESH_MAX_FACT);
1033   }
1034 }
1035
1036 void vp9_pick_intra_mode(VP9_COMP *cpi, MACROBLOCK *x, RD_COST *rd_cost,
1037                          BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx) {
1038   MACROBLOCKD *const xd = &x->e_mbd;
1039   MODE_INFO *const mi = xd->mi[0];
1040   RD_COST this_rdc, best_rdc;
1041   PREDICTION_MODE this_mode;
1042   struct estimate_block_intra_args args = { cpi, x, DC_PRED, 1, 0 };
1043   const TX_SIZE intra_tx_size =
1044       VPXMIN(max_txsize_lookup[bsize],
1045              tx_mode_to_biggest_tx_size[cpi->common.tx_mode]);
1046   MODE_INFO *const mic = xd->mi[0];
1047   int *bmode_costs;
1048   const MODE_INFO *above_mi = xd->above_mi;
1049   const MODE_INFO *left_mi = xd->left_mi;
1050   const PREDICTION_MODE A = vp9_above_block_mode(mic, above_mi, 0);
1051   const PREDICTION_MODE L = vp9_left_block_mode(mic, left_mi, 0);
1052   bmode_costs = cpi->y_mode_costs[A][L];
1053
1054   (void)ctx;
1055   vp9_rd_cost_reset(&best_rdc);
1056   vp9_rd_cost_reset(&this_rdc);
1057
1058   mi->ref_frame[0] = INTRA_FRAME;
1059   // Initialize interp_filter here so we do not have to check for inter block
1060   // modes in get_pred_context_switchable_interp()
1061   mi->interp_filter = SWITCHABLE_FILTERS;
1062
1063   mi->mv[0].as_int = INVALID_MV;
1064   mi->uv_mode = DC_PRED;
1065   memset(x->skip_txfm, 0, sizeof(x->skip_txfm));
1066
1067   // Change the limit of this loop to add other intra prediction
1068   // mode tests.
1069   for (this_mode = DC_PRED; this_mode <= H_PRED; ++this_mode) {
1070     this_rdc.dist = this_rdc.rate = 0;
1071     args.mode = this_mode;
1072     args.skippable = 1;
1073     args.rdc = &this_rdc;
1074     mi->tx_size = intra_tx_size;
1075     vp9_foreach_transformed_block_in_plane(xd, bsize, 0, estimate_block_intra,
1076                                            &args);
1077     if (args.skippable) {
1078       x->skip_txfm[0] = SKIP_TXFM_AC_DC;
1079       this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), 1);
1080     } else {
1081       x->skip_txfm[0] = SKIP_TXFM_NONE;
1082       this_rdc.rate += vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), 0);
1083     }
1084     this_rdc.rate += bmode_costs[this_mode];
1085     this_rdc.rdcost = RDCOST(x->rdmult, x->rddiv, this_rdc.rate, this_rdc.dist);
1086
1087     if (this_rdc.rdcost < best_rdc.rdcost) {
1088       best_rdc = this_rdc;
1089       mi->mode = this_mode;
1090     }
1091   }
1092
1093   *rd_cost = best_rdc;
1094 }
1095
1096 static void init_ref_frame_cost(VP9_COMMON *const cm, MACROBLOCKD *const xd,
1097                                 int ref_frame_cost[MAX_REF_FRAMES]) {
1098   vpx_prob intra_inter_p = vp9_get_intra_inter_prob(cm, xd);
1099   vpx_prob ref_single_p1 = vp9_get_pred_prob_single_ref_p1(cm, xd);
1100   vpx_prob ref_single_p2 = vp9_get_pred_prob_single_ref_p2(cm, xd);
1101
1102   ref_frame_cost[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0);
1103   ref_frame_cost[LAST_FRAME] = ref_frame_cost[GOLDEN_FRAME] =
1104       ref_frame_cost[ALTREF_FRAME] = vp9_cost_bit(intra_inter_p, 1);
1105
1106   ref_frame_cost[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0);
1107   ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1);
1108   ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1);
1109   ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0);
1110   ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1);
1111 }
1112
1113 typedef struct {
1114   MV_REFERENCE_FRAME ref_frame;
1115   PREDICTION_MODE pred_mode;
1116 } REF_MODE;
1117
1118 #define RT_INTER_MODES 12
1119 static const REF_MODE ref_mode_set[RT_INTER_MODES] = {
1120   { LAST_FRAME, ZEROMV },   { LAST_FRAME, NEARESTMV },
1121   { GOLDEN_FRAME, ZEROMV }, { LAST_FRAME, NEARMV },
1122   { LAST_FRAME, NEWMV },    { GOLDEN_FRAME, NEARESTMV },
1123   { GOLDEN_FRAME, NEARMV }, { GOLDEN_FRAME, NEWMV },
1124   { ALTREF_FRAME, ZEROMV }, { ALTREF_FRAME, NEARESTMV },
1125   { ALTREF_FRAME, NEARMV }, { ALTREF_FRAME, NEWMV }
1126 };
1127 static const REF_MODE ref_mode_set_svc[RT_INTER_MODES] = {
1128   { LAST_FRAME, ZEROMV },      { GOLDEN_FRAME, ZEROMV },
1129   { LAST_FRAME, NEARESTMV },   { LAST_FRAME, NEARMV },
1130   { GOLDEN_FRAME, NEARESTMV }, { GOLDEN_FRAME, NEARMV },
1131   { LAST_FRAME, NEWMV },       { GOLDEN_FRAME, NEWMV }
1132 };
1133
1134 static int set_intra_cost_penalty(const VP9_COMP *const cpi, BLOCK_SIZE bsize) {
1135   const VP9_COMMON *const cm = &cpi->common;
1136   // Reduce the intra cost penalty for small blocks (<=16x16).
1137   int reduction_fac =
1138       (bsize <= BLOCK_16X16) ? ((bsize <= BLOCK_8X8) ? 4 : 2) : 0;
1139   if (cpi->noise_estimate.enabled && cpi->noise_estimate.level == kHigh)
1140     // Don't reduce intra cost penalty if estimated noise level is high.
1141     reduction_fac = 0;
1142   return vp9_get_intra_cost_penalty(cm->base_qindex, cm->y_dc_delta_q,
1143                                     cm->bit_depth) >>
1144          reduction_fac;
1145 }
1146
1147 static INLINE void find_predictors(
1148     VP9_COMP *cpi, MACROBLOCK *x, MV_REFERENCE_FRAME ref_frame,
1149     int_mv frame_mv[MB_MODE_COUNT][MAX_REF_FRAMES],
1150     int const_motion[MAX_REF_FRAMES], int *ref_frame_skip_mask,
1151     const int flag_list[4], TileDataEnc *tile_data, int mi_row, int mi_col,
1152     struct buf_2d yv12_mb[4][MAX_MB_PLANE], BLOCK_SIZE bsize,
1153     int force_skip_low_temp_var) {
1154   VP9_COMMON *const cm = &cpi->common;
1155   MACROBLOCKD *const xd = &x->e_mbd;
1156   const YV12_BUFFER_CONFIG *yv12 = get_ref_frame_buffer(cpi, ref_frame);
1157   TileInfo *const tile_info = &tile_data->tile_info;
1158   // TODO(jingning) placeholder for inter-frame non-RD mode decision.
1159   x->pred_mv_sad[ref_frame] = INT_MAX;
1160   frame_mv[NEWMV][ref_frame].as_int = INVALID_MV;
1161   frame_mv[ZEROMV][ref_frame].as_int = 0;
1162   // this needs various further optimizations. to be continued..
1163   if ((cpi->ref_frame_flags & flag_list[ref_frame]) && (yv12 != NULL)) {
1164     int_mv *const candidates = x->mbmi_ext->ref_mvs[ref_frame];
1165     const struct scale_factors *const sf = &cm->frame_refs[ref_frame - 1].sf;
1166     vp9_setup_pred_block(xd, yv12_mb[ref_frame], yv12, mi_row, mi_col, sf, sf);
1167     if (cm->use_prev_frame_mvs) {
1168       vp9_find_mv_refs(cm, xd, xd->mi[0], ref_frame, candidates, mi_row, mi_col,
1169                        x->mbmi_ext->mode_context);
1170     } else {
1171       const_motion[ref_frame] =
1172           mv_refs_rt(cpi, cm, x, xd, tile_info, xd->mi[0], ref_frame,
1173                      candidates, &frame_mv[NEWMV][ref_frame], mi_row, mi_col,
1174                      (int)(cpi->svc.use_base_mv && cpi->svc.spatial_layer_id));
1175     }
1176     vp9_find_best_ref_mvs(xd, cm->allow_high_precision_mv, candidates,
1177                           &frame_mv[NEARESTMV][ref_frame],
1178                           &frame_mv[NEARMV][ref_frame]);
1179     // Early exit for golden frame if force_skip_low_temp_var is set.
1180     if (!vp9_is_scaled(sf) && bsize >= BLOCK_8X8 &&
1181         !(force_skip_low_temp_var && ref_frame == GOLDEN_FRAME)) {
1182       vp9_mv_pred(cpi, x, yv12_mb[ref_frame][0].buf, yv12->y_stride, ref_frame,
1183                   bsize);
1184     }
1185   } else {
1186     *ref_frame_skip_mask |= (1 << ref_frame);
1187   }
1188 }
1189
1190 static void vp9_NEWMV_diff_bias(const NOISE_ESTIMATE *ne, MACROBLOCKD *xd,
1191                                 PREDICTION_MODE this_mode, RD_COST *this_rdc,
1192                                 BLOCK_SIZE bsize, int mv_row, int mv_col,
1193                                 int is_last_frame) {
1194   // Bias against MVs associated with NEWMV mode that are very different from
1195   // top/left neighbors.
1196   if (this_mode == NEWMV) {
1197     int al_mv_average_row;
1198     int al_mv_average_col;
1199     int left_row, left_col;
1200     int row_diff, col_diff;
1201     int above_mv_valid = 0;
1202     int left_mv_valid = 0;
1203     int above_row = 0;
1204     int above_col = 0;
1205
1206     if (xd->above_mi) {
1207       above_mv_valid = xd->above_mi->mv[0].as_int != INVALID_MV;
1208       above_row = xd->above_mi->mv[0].as_mv.row;
1209       above_col = xd->above_mi->mv[0].as_mv.col;
1210     }
1211     if (xd->left_mi) {
1212       left_mv_valid = xd->left_mi->mv[0].as_int != INVALID_MV;
1213       left_row = xd->left_mi->mv[0].as_mv.row;
1214       left_col = xd->left_mi->mv[0].as_mv.col;
1215     }
1216     if (above_mv_valid && left_mv_valid) {
1217       al_mv_average_row = (above_row + left_row + 1) >> 1;
1218       al_mv_average_col = (above_col + left_col + 1) >> 1;
1219     } else if (above_mv_valid) {
1220       al_mv_average_row = above_row;
1221       al_mv_average_col = above_col;
1222     } else if (left_mv_valid) {
1223       al_mv_average_row = left_row;
1224       al_mv_average_col = left_col;
1225     } else {
1226       al_mv_average_row = al_mv_average_col = 0;
1227     }
1228     row_diff = (al_mv_average_row - mv_row);
1229     col_diff = (al_mv_average_col - mv_col);
1230     if (row_diff > 48 || row_diff < -48 || col_diff > 48 || col_diff < -48) {
1231       if (bsize > BLOCK_32X32)
1232         this_rdc->rdcost = this_rdc->rdcost << 1;
1233       else
1234         this_rdc->rdcost = 3 * this_rdc->rdcost >> 1;
1235     }
1236   }
1237   // If noise estimation is enabled, and estimated level is above threshold,
1238   // add a bias to LAST reference with small motion, for large blocks.
1239   if (ne->enabled && ne->level >= kMedium && bsize >= BLOCK_32X32 &&
1240       is_last_frame && mv_row < 8 && mv_row > -8 && mv_col < 8 && mv_col > -8) {
1241     this_rdc->rdcost = 7 * this_rdc->rdcost >> 3;
1242   }
1243 }
1244
1245 #if CONFIG_VP9_TEMPORAL_DENOISING
1246 static void vp9_pickmode_ctx_den_update(
1247     VP9_PICKMODE_CTX_DEN *ctx_den, int64_t zero_last_cost_orig,
1248     int ref_frame_cost[MAX_REF_FRAMES],
1249     int_mv frame_mv[MB_MODE_COUNT][MAX_REF_FRAMES], int reuse_inter_pred,
1250     TX_SIZE best_tx_size, PREDICTION_MODE best_mode,
1251     MV_REFERENCE_FRAME best_ref_frame, INTERP_FILTER best_pred_filter,
1252     uint8_t best_mode_skip_txfm) {
1253   ctx_den->zero_last_cost_orig = zero_last_cost_orig;
1254   ctx_den->ref_frame_cost = ref_frame_cost;
1255   ctx_den->frame_mv = frame_mv;
1256   ctx_den->reuse_inter_pred = reuse_inter_pred;
1257   ctx_den->best_tx_size = best_tx_size;
1258   ctx_den->best_mode = best_mode;
1259   ctx_den->best_ref_frame = best_ref_frame;
1260   ctx_den->best_pred_filter = best_pred_filter;
1261   ctx_den->best_mode_skip_txfm = best_mode_skip_txfm;
1262 }
1263
1264 static void recheck_zeromv_after_denoising(
1265     VP9_COMP *cpi, MODE_INFO *const mi, MACROBLOCK *x, MACROBLOCKD *const xd,
1266     VP9_DENOISER_DECISION decision, VP9_PICKMODE_CTX_DEN *ctx_den,
1267     struct buf_2d yv12_mb[4][MAX_MB_PLANE], RD_COST *best_rdc, BLOCK_SIZE bsize,
1268     int mi_row, int mi_col) {
1269   // If INTRA or GOLDEN reference was selected, re-evaluate ZEROMV on
1270   // denoised result. Only do this under noise conditions, and if rdcost of
1271   // ZEROMV onoriginal source is not significantly higher than rdcost of best
1272   // mode.
1273   if (cpi->noise_estimate.enabled && cpi->noise_estimate.level > kLow &&
1274       ctx_den->zero_last_cost_orig < (best_rdc->rdcost << 3) &&
1275       ((ctx_den->best_ref_frame == INTRA_FRAME && decision >= FILTER_BLOCK) ||
1276        (ctx_den->best_ref_frame == GOLDEN_FRAME &&
1277         cpi->svc.number_spatial_layers == 1 &&
1278         decision == FILTER_ZEROMV_BLOCK))) {
1279     // Check if we should pick ZEROMV on denoised signal.
1280     int rate = 0;
1281     int64_t dist = 0;
1282     uint32_t var_y = UINT_MAX;
1283     uint32_t sse_y = UINT_MAX;
1284     RD_COST this_rdc;
1285     mi->mode = ZEROMV;
1286     mi->ref_frame[0] = LAST_FRAME;
1287     mi->ref_frame[1] = NONE;
1288     mi->mv[0].as_int = 0;
1289     mi->interp_filter = EIGHTTAP;
1290     xd->plane[0].pre[0] = yv12_mb[LAST_FRAME][0];
1291     vp9_build_inter_predictors_sby(xd, mi_row, mi_col, bsize);
1292     model_rd_for_sb_y(cpi, bsize, x, xd, &rate, &dist, &var_y, &sse_y);
1293     this_rdc.rate = rate + ctx_den->ref_frame_cost[LAST_FRAME] +
1294                     cpi->inter_mode_cost[x->mbmi_ext->mode_context[LAST_FRAME]]
1295                                         [INTER_OFFSET(ZEROMV)];
1296     this_rdc.dist = dist;
1297     this_rdc.rdcost = RDCOST(x->rdmult, x->rddiv, rate, dist);
1298     // Don't switch to ZEROMV if the rdcost for ZEROMV on denoised source
1299     // is higher than best_ref mode (on original source).
1300     if (this_rdc.rdcost > best_rdc->rdcost) {
1301       this_rdc = *best_rdc;
1302       mi->mode = ctx_den->best_mode;
1303       mi->ref_frame[0] = ctx_den->best_ref_frame;
1304       mi->interp_filter = ctx_den->best_pred_filter;
1305       if (ctx_den->best_ref_frame == INTRA_FRAME) {
1306         mi->mv[0].as_int = INVALID_MV;
1307         mi->interp_filter = SWITCHABLE_FILTERS;
1308       } else if (ctx_den->best_ref_frame == GOLDEN_FRAME) {
1309         mi->mv[0].as_int =
1310             ctx_den->frame_mv[ctx_den->best_mode][ctx_den->best_ref_frame]
1311                 .as_int;
1312         if (ctx_den->reuse_inter_pred) {
1313           xd->plane[0].pre[0] = yv12_mb[GOLDEN_FRAME][0];
1314           vp9_build_inter_predictors_sby(xd, mi_row, mi_col, bsize);
1315         }
1316       }
1317       mi->tx_size = ctx_den->best_tx_size;
1318       x->skip_txfm[0] = ctx_den->best_mode_skip_txfm;
1319     } else {
1320       ctx_den->best_ref_frame = LAST_FRAME;
1321       *best_rdc = this_rdc;
1322     }
1323   }
1324 }
1325 #endif  // CONFIG_VP9_TEMPORAL_DENOISING
1326
1327 static INLINE int get_force_skip_low_temp_var(uint8_t *variance_low, int mi_row,
1328                                               int mi_col, BLOCK_SIZE bsize) {
1329   const int i = (mi_row & 0x7) >> 1;
1330   const int j = (mi_col & 0x7) >> 1;
1331   int force_skip_low_temp_var = 0;
1332   // Set force_skip_low_temp_var based on the block size and block offset.
1333   if (bsize == BLOCK_64X64) {
1334     force_skip_low_temp_var = variance_low[0];
1335   } else if (bsize == BLOCK_64X32) {
1336     if (!(mi_col & 0x7) && !(mi_row & 0x7)) {
1337       force_skip_low_temp_var = variance_low[1];
1338     } else if (!(mi_col & 0x7) && (mi_row & 0x7)) {
1339       force_skip_low_temp_var = variance_low[2];
1340     }
1341   } else if (bsize == BLOCK_32X64) {
1342     if (!(mi_col & 0x7) && !(mi_row & 0x7)) {
1343       force_skip_low_temp_var = variance_low[3];
1344     } else if ((mi_col & 0x7) && !(mi_row & 0x7)) {
1345       force_skip_low_temp_var = variance_low[4];
1346     }
1347   } else if (bsize == BLOCK_32X32) {
1348     if (!(mi_col & 0x7) && !(mi_row & 0x7)) {
1349       force_skip_low_temp_var = variance_low[5];
1350     } else if ((mi_col & 0x7) && !(mi_row & 0x7)) {
1351       force_skip_low_temp_var = variance_low[6];
1352     } else if (!(mi_col & 0x7) && (mi_row & 0x7)) {
1353       force_skip_low_temp_var = variance_low[7];
1354     } else if ((mi_col & 0x7) && (mi_row & 0x7)) {
1355       force_skip_low_temp_var = variance_low[8];
1356     }
1357   } else if (bsize == BLOCK_16X16) {
1358     force_skip_low_temp_var = variance_low[pos_shift_16x16[i][j]];
1359   } else if (bsize == BLOCK_32X16) {
1360     // The col shift index for the second 16x16 block.
1361     const int j2 = ((mi_col + 2) & 0x7) >> 1;
1362     // Only if each 16x16 block inside has low temporal variance.
1363     force_skip_low_temp_var = variance_low[pos_shift_16x16[i][j]] &&
1364                               variance_low[pos_shift_16x16[i][j2]];
1365   } else if (bsize == BLOCK_16X32) {
1366     // The row shift index for the second 16x16 block.
1367     const int i2 = ((mi_row + 2) & 0x7) >> 1;
1368     force_skip_low_temp_var = variance_low[pos_shift_16x16[i][j]] &&
1369                               variance_low[pos_shift_16x16[i2][j]];
1370   }
1371   return force_skip_low_temp_var;
1372 }
1373
1374 void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x, TileDataEnc *tile_data,
1375                          int mi_row, int mi_col, RD_COST *rd_cost,
1376                          BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx) {
1377   VP9_COMMON *const cm = &cpi->common;
1378   SPEED_FEATURES *const sf = &cpi->sf;
1379   const SVC *const svc = &cpi->svc;
1380   MACROBLOCKD *const xd = &x->e_mbd;
1381   MODE_INFO *const mi = xd->mi[0];
1382   struct macroblockd_plane *const pd = &xd->plane[0];
1383   PREDICTION_MODE best_mode = ZEROMV;
1384   MV_REFERENCE_FRAME ref_frame, best_ref_frame = LAST_FRAME;
1385   MV_REFERENCE_FRAME usable_ref_frame;
1386   TX_SIZE best_tx_size = TX_SIZES;
1387   INTERP_FILTER best_pred_filter = EIGHTTAP;
1388   int_mv frame_mv[MB_MODE_COUNT][MAX_REF_FRAMES];
1389   struct buf_2d yv12_mb[4][MAX_MB_PLANE];
1390   static const int flag_list[4] = { 0, VP9_LAST_FLAG, VP9_GOLD_FLAG,
1391                                     VP9_ALT_FLAG };
1392   RD_COST this_rdc, best_rdc;
1393   uint8_t skip_txfm = SKIP_TXFM_NONE, best_mode_skip_txfm = SKIP_TXFM_NONE;
1394   // var_y and sse_y are saved to be used in skipping checking
1395   unsigned int var_y = UINT_MAX;
1396   unsigned int sse_y = UINT_MAX;
1397   const int intra_cost_penalty = set_intra_cost_penalty(cpi, bsize);
1398   int64_t inter_mode_thresh =
1399       RDCOST(x->rdmult, x->rddiv, intra_cost_penalty, 0);
1400   const int *const rd_threshes = cpi->rd.threshes[mi->segment_id][bsize];
1401   const int *const rd_thresh_freq_fact = tile_data->thresh_freq_fact[bsize];
1402   INTERP_FILTER filter_ref;
1403   const int bsl = mi_width_log2_lookup[bsize];
1404   const int pred_filter_search =
1405       cm->interp_filter == SWITCHABLE
1406           ? (((mi_row + mi_col) >> bsl) +
1407              get_chessboard_index(cm->current_video_frame)) &
1408                 0x1
1409           : 0;
1410   int const_motion[MAX_REF_FRAMES] = { 0 };
1411   const int bh = num_4x4_blocks_high_lookup[bsize] << 2;
1412   const int bw = num_4x4_blocks_wide_lookup[bsize] << 2;
1413   // For speed 6, the result of interp filter is reused later in actual encoding
1414   // process.
1415   // tmp[3] points to dst buffer, and the other 3 point to allocated buffers.
1416   PRED_BUFFER tmp[4];
1417   DECLARE_ALIGNED(16, uint8_t, pred_buf[3 * 64 * 64]);
1418 #if CONFIG_VP9_HIGHBITDEPTH
1419   DECLARE_ALIGNED(16, uint16_t, pred_buf_16[3 * 64 * 64]);
1420 #endif
1421   struct buf_2d orig_dst = pd->dst;
1422   PRED_BUFFER *best_pred = NULL;
1423   PRED_BUFFER *this_mode_pred = NULL;
1424   const int pixels_in_block = bh * bw;
1425   int reuse_inter_pred = cpi->sf.reuse_inter_pred_sby && ctx->pred_pixel_ready;
1426   int ref_frame_skip_mask = 0;
1427   int idx;
1428   int best_pred_sad = INT_MAX;
1429   int best_early_term = 0;
1430   int ref_frame_cost[MAX_REF_FRAMES];
1431   int svc_force_zero_mode[3] = { 0 };
1432   int perform_intra_pred = 1;
1433   int use_golden_nonzeromv = 1;
1434   int force_skip_low_temp_var = 0;
1435   int skip_ref_find_pred[4] = { 0 };
1436 #if CONFIG_VP9_TEMPORAL_DENOISING
1437   VP9_PICKMODE_CTX_DEN ctx_den;
1438   int64_t zero_last_cost_orig = INT64_MAX;
1439 #endif
1440
1441   init_ref_frame_cost(cm, xd, ref_frame_cost);
1442
1443   if (reuse_inter_pred) {
1444     int i;
1445     for (i = 0; i < 3; i++) {
1446 #if CONFIG_VP9_HIGHBITDEPTH
1447       if (cm->use_highbitdepth)
1448         tmp[i].data = CONVERT_TO_BYTEPTR(&pred_buf_16[pixels_in_block * i]);
1449       else
1450         tmp[i].data = &pred_buf[pixels_in_block * i];
1451 #else
1452       tmp[i].data = &pred_buf[pixels_in_block * i];
1453 #endif  // CONFIG_VP9_HIGHBITDEPTH
1454       tmp[i].stride = bw;
1455       tmp[i].in_use = 0;
1456     }
1457     tmp[3].data = pd->dst.buf;
1458     tmp[3].stride = pd->dst.stride;
1459     tmp[3].in_use = 0;
1460   }
1461
1462   x->skip_encode = cpi->sf.skip_encode_frame && x->q_index < QIDX_SKIP_THRESH;
1463   x->skip = 0;
1464
1465   // Instead of using vp9_get_pred_context_switchable_interp(xd) to assign
1466   // filter_ref, we use a less strict condition on assigning filter_ref.
1467   // This is to reduce the probabily of entering the flow of not assigning
1468   // filter_ref and then skip filter search.
1469   if (xd->above_mi && is_inter_block(xd->above_mi))
1470     filter_ref = xd->above_mi->interp_filter;
1471   else if (xd->left_mi && is_inter_block(xd->left_mi))
1472     filter_ref = xd->left_mi->interp_filter;
1473   else
1474     filter_ref = cm->interp_filter;
1475
1476   // initialize mode decisions
1477   vp9_rd_cost_reset(&best_rdc);
1478   vp9_rd_cost_reset(rd_cost);
1479   mi->sb_type = bsize;
1480   mi->ref_frame[0] = NONE;
1481   mi->ref_frame[1] = NONE;
1482
1483   mi->tx_size =
1484       VPXMIN(max_txsize_lookup[bsize], tx_mode_to_biggest_tx_size[cm->tx_mode]);
1485
1486   if (sf->short_circuit_flat_blocks || sf->limit_newmv_early_exit) {
1487 #if CONFIG_VP9_HIGHBITDEPTH
1488     if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH)
1489       x->source_variance = vp9_high_get_sby_perpixel_variance(
1490           cpi, &x->plane[0].src, bsize, xd->bd);
1491     else
1492 #endif  // CONFIG_VP9_HIGHBITDEPTH
1493       x->source_variance =
1494           vp9_get_sby_perpixel_variance(cpi, &x->plane[0].src, bsize);
1495   }
1496
1497 #if CONFIG_VP9_TEMPORAL_DENOISING
1498   if (cpi->oxcf.noise_sensitivity > 0 && denoise_svc(cpi) &&
1499       cpi->denoiser.denoising_level > kDenLowLow) {
1500     vp9_denoiser_reset_frame_stats(ctx);
1501   }
1502 #endif
1503
1504   if (cpi->rc.frames_since_golden == 0 && !cpi->use_svc) {
1505     usable_ref_frame = LAST_FRAME;
1506   } else {
1507     usable_ref_frame = GOLDEN_FRAME;
1508   }
1509
1510   if (cpi->oxcf.lag_in_frames > 0 && cpi->oxcf.rc_mode == VPX_VBR) {
1511     if (cpi->rc.alt_ref_gf_group || cpi->rc.is_src_frame_alt_ref)
1512       usable_ref_frame = ALTREF_FRAME;
1513
1514     if (cpi->rc.is_src_frame_alt_ref) {
1515       skip_ref_find_pred[LAST_FRAME] = 1;
1516       skip_ref_find_pred[GOLDEN_FRAME] = 1;
1517     }
1518   }
1519
1520   // For svc mode, on spatial_layer_id > 0: if the reference has different scale
1521   // constrain the inter mode to only test zero motion.
1522   if (cpi->use_svc && svc->force_zero_mode_spatial_ref &&
1523       cpi->svc.spatial_layer_id > 0) {
1524     if (cpi->ref_frame_flags & flag_list[LAST_FRAME]) {
1525       struct scale_factors *const sf = &cm->frame_refs[LAST_FRAME - 1].sf;
1526       if (vp9_is_scaled(sf)) svc_force_zero_mode[LAST_FRAME - 1] = 1;
1527     }
1528     if (cpi->ref_frame_flags & flag_list[GOLDEN_FRAME]) {
1529       struct scale_factors *const sf = &cm->frame_refs[GOLDEN_FRAME - 1].sf;
1530       if (vp9_is_scaled(sf)) svc_force_zero_mode[GOLDEN_FRAME - 1] = 1;
1531     }
1532   }
1533
1534   if (cpi->sf.short_circuit_low_temp_var) {
1535     force_skip_low_temp_var =
1536         get_force_skip_low_temp_var(&x->variance_low[0], mi_row, mi_col, bsize);
1537     // If force_skip_low_temp_var is set, and for short circuit mode = 1 and 3,
1538     // skip golden reference.
1539     if ((cpi->sf.short_circuit_low_temp_var == 1 ||
1540          cpi->sf.short_circuit_low_temp_var == 3) &&
1541         force_skip_low_temp_var) {
1542       usable_ref_frame = LAST_FRAME;
1543     }
1544   }
1545
1546   if (!((cpi->ref_frame_flags & flag_list[GOLDEN_FRAME]) &&
1547         !svc_force_zero_mode[GOLDEN_FRAME - 1] && !force_skip_low_temp_var))
1548     use_golden_nonzeromv = 0;
1549
1550   for (ref_frame = LAST_FRAME; ref_frame <= usable_ref_frame; ++ref_frame) {
1551     if (!skip_ref_find_pred[ref_frame]) {
1552       find_predictors(cpi, x, ref_frame, frame_mv, const_motion,
1553                       &ref_frame_skip_mask, flag_list, tile_data, mi_row,
1554                       mi_col, yv12_mb, bsize, force_skip_low_temp_var);
1555     }
1556   }
1557
1558   for (idx = 0; idx < RT_INTER_MODES; ++idx) {
1559     int rate_mv = 0;
1560     int mode_rd_thresh;
1561     int mode_index;
1562     int i;
1563     int64_t this_sse;
1564     int is_skippable;
1565     int this_early_term = 0;
1566     PREDICTION_MODE this_mode = ref_mode_set[idx].pred_mode;
1567
1568     ref_frame = ref_mode_set[idx].ref_frame;
1569
1570     if (cpi->use_svc) {
1571       this_mode = ref_mode_set_svc[idx].pred_mode;
1572       ref_frame = ref_mode_set_svc[idx].ref_frame;
1573     }
1574     if (ref_frame > usable_ref_frame) continue;
1575     if (skip_ref_find_pred[ref_frame]) continue;
1576
1577     if (sf->short_circuit_flat_blocks && x->source_variance == 0 &&
1578         this_mode != NEARESTMV) {
1579       continue;
1580     }
1581
1582     if (!(cpi->sf.inter_mode_mask[bsize] & (1 << this_mode))) continue;
1583
1584     if (cpi->oxcf.lag_in_frames > 0 && cpi->oxcf.rc_mode == VPX_VBR) {
1585       if (cpi->rc.is_src_frame_alt_ref &&
1586           (ref_frame != ALTREF_FRAME ||
1587            frame_mv[this_mode][ref_frame].as_int != 0))
1588         continue;
1589
1590       if (cpi->rc.alt_ref_gf_group &&
1591           cpi->rc.frames_since_golden > (cpi->rc.baseline_gf_interval >> 1) &&
1592           ref_frame == GOLDEN_FRAME &&
1593           frame_mv[this_mode][ref_frame].as_int != 0)
1594         continue;
1595
1596       if (cpi->rc.alt_ref_gf_group &&
1597           cpi->rc.frames_since_golden < (cpi->rc.baseline_gf_interval >> 1) &&
1598           ref_frame == ALTREF_FRAME &&
1599           frame_mv[this_mode][ref_frame].as_int != 0)
1600         continue;
1601     }
1602
1603     if (!(cpi->ref_frame_flags & flag_list[ref_frame])) continue;
1604
1605     if (const_motion[ref_frame] && this_mode == NEARMV) continue;
1606
1607     // Skip non-zeromv mode search for golden frame if force_skip_low_temp_var
1608     // is set. If nearestmv for golden frame is 0, zeromv mode will be skipped
1609     // later.
1610     if (force_skip_low_temp_var && ref_frame == GOLDEN_FRAME &&
1611         frame_mv[this_mode][ref_frame].as_int != 0) {
1612       continue;
1613     }
1614
1615     if ((cpi->sf.short_circuit_low_temp_var >= 2 ||
1616          (cpi->sf.short_circuit_low_temp_var == 1 && bsize == BLOCK_64X64)) &&
1617         force_skip_low_temp_var && ref_frame == LAST_FRAME &&
1618         this_mode == NEWMV) {
1619       continue;
1620     }
1621
1622     if (cpi->use_svc) {
1623       if (svc_force_zero_mode[ref_frame - 1] &&
1624           frame_mv[this_mode][ref_frame].as_int != 0)
1625         continue;
1626     }
1627
1628     if (sf->reference_masking &&
1629         !(frame_mv[this_mode][ref_frame].as_int == 0 &&
1630           ref_frame == LAST_FRAME)) {
1631       if (usable_ref_frame < ALTREF_FRAME) {
1632         if (!force_skip_low_temp_var && usable_ref_frame > LAST_FRAME) {
1633           i = (ref_frame == LAST_FRAME) ? GOLDEN_FRAME : LAST_FRAME;
1634           if ((cpi->ref_frame_flags & flag_list[i]))
1635             if (x->pred_mv_sad[ref_frame] > (x->pred_mv_sad[i] << 1))
1636               ref_frame_skip_mask |= (1 << ref_frame);
1637         }
1638       } else if (!cpi->rc.is_src_frame_alt_ref &&
1639                  !(frame_mv[this_mode][ref_frame].as_int == 0 &&
1640                    ref_frame == ALTREF_FRAME)) {
1641         int ref1 = (ref_frame == GOLDEN_FRAME) ? LAST_FRAME : GOLDEN_FRAME;
1642         int ref2 = (ref_frame == ALTREF_FRAME) ? LAST_FRAME : ALTREF_FRAME;
1643         if (((cpi->ref_frame_flags & flag_list[ref1]) &&
1644              (x->pred_mv_sad[ref_frame] > (x->pred_mv_sad[ref1] << 1))) ||
1645             ((cpi->ref_frame_flags & flag_list[ref2]) &&
1646              (x->pred_mv_sad[ref_frame] > (x->pred_mv_sad[ref2] << 1))))
1647           ref_frame_skip_mask |= (1 << ref_frame);
1648       }
1649     }
1650     if (ref_frame_skip_mask & (1 << ref_frame)) continue;
1651
1652     // Select prediction reference frames.
1653     for (i = 0; i < MAX_MB_PLANE; i++)
1654       xd->plane[i].pre[0] = yv12_mb[ref_frame][i];
1655
1656     mi->ref_frame[0] = ref_frame;
1657     set_ref_ptrs(cm, xd, ref_frame, NONE);
1658
1659     mode_index = mode_idx[ref_frame][INTER_OFFSET(this_mode)];
1660     mode_rd_thresh = best_mode_skip_txfm ? rd_threshes[mode_index] << 1
1661                                          : rd_threshes[mode_index];
1662
1663     // Increase mode_rd_thresh value for GOLDEN_FRAME for improved encoding
1664     // speed with little/no subjective quality loss.
1665     if (cpi->sf.bias_golden && ref_frame == GOLDEN_FRAME &&
1666         cpi->rc.frames_since_golden > 4)
1667       mode_rd_thresh = mode_rd_thresh << 3;
1668
1669     if (rd_less_than_thresh(
1670             best_rdc.rdcost, mode_rd_thresh,
1671 #if CONFIG_MULTITHREAD
1672             // Synchronization of this function is only necessary when
1673             // adaptive_rd_thresh is > 0.
1674             cpi->sf.adaptive_rd_thresh ? tile_data->enc_row_mt_mutex : NULL,
1675 #endif
1676             &rd_thresh_freq_fact[mode_index]))
1677       continue;
1678
1679     if (this_mode == NEWMV) {
1680       if (ref_frame > LAST_FRAME && !cpi->use_svc &&
1681           cpi->oxcf.rc_mode == VPX_CBR) {
1682         int tmp_sad;
1683         uint32_t dis;
1684         int cost_list[5];
1685
1686         if (bsize < BLOCK_16X16) continue;
1687
1688         tmp_sad = vp9_int_pro_motion_estimation(cpi, x, bsize, mi_row, mi_col);
1689
1690         if (tmp_sad > x->pred_mv_sad[LAST_FRAME]) continue;
1691         if (tmp_sad + (num_pels_log2_lookup[bsize] << 4) > best_pred_sad)
1692           continue;
1693
1694         frame_mv[NEWMV][ref_frame].as_int = mi->mv[0].as_int;
1695         rate_mv = vp9_mv_bit_cost(&frame_mv[NEWMV][ref_frame].as_mv,
1696                                   &x->mbmi_ext->ref_mvs[ref_frame][0].as_mv,
1697                                   x->nmvjointcost, x->mvcost, MV_COST_WEIGHT);
1698         frame_mv[NEWMV][ref_frame].as_mv.row >>= 3;
1699         frame_mv[NEWMV][ref_frame].as_mv.col >>= 3;
1700
1701         cpi->find_fractional_mv_step(
1702             x, &frame_mv[NEWMV][ref_frame].as_mv,
1703             &x->mbmi_ext->ref_mvs[ref_frame][0].as_mv,
1704             cpi->common.allow_high_precision_mv, x->errorperbit,
1705             &cpi->fn_ptr[bsize], cpi->sf.mv.subpel_force_stop,
1706             cpi->sf.mv.subpel_iters_per_step, cond_cost_list(cpi, cost_list),
1707             x->nmvjointcost, x->mvcost, &dis, &x->pred_sse[ref_frame], NULL, 0,
1708             0);
1709       } else if (svc->use_base_mv && svc->spatial_layer_id) {
1710         if (frame_mv[NEWMV][ref_frame].as_int != INVALID_MV) {
1711           const int pre_stride = xd->plane[0].pre[0].stride;
1712           int base_mv_sad = INT_MAX;
1713           const float base_mv_bias = sf->base_mv_aggressive ? 1.5f : 1.0f;
1714           const uint8_t *const pre_buf =
1715               xd->plane[0].pre[0].buf +
1716               (frame_mv[NEWMV][ref_frame].as_mv.row >> 3) * pre_stride +
1717               (frame_mv[NEWMV][ref_frame].as_mv.col >> 3);
1718           base_mv_sad = cpi->fn_ptr[bsize].sdf(
1719               x->plane[0].src.buf, x->plane[0].src.stride, pre_buf, pre_stride);
1720
1721           if (base_mv_sad < (int)(base_mv_bias * x->pred_mv_sad[ref_frame])) {
1722             // Base layer mv is good.
1723             if (!combined_motion_search(cpi, x, bsize, mi_row, mi_col,
1724                                         &frame_mv[NEWMV][ref_frame], &rate_mv,
1725                                         best_rdc.rdcost, 1)) {
1726               continue;
1727             }
1728           } else if (!combined_motion_search(cpi, x, bsize, mi_row, mi_col,
1729                                              &frame_mv[NEWMV][ref_frame],
1730                                              &rate_mv, best_rdc.rdcost, 0)) {
1731             continue;
1732           }
1733         } else if (!combined_motion_search(cpi, x, bsize, mi_row, mi_col,
1734                                            &frame_mv[NEWMV][ref_frame],
1735                                            &rate_mv, best_rdc.rdcost, 0)) {
1736           continue;
1737         }
1738       } else if (!combined_motion_search(cpi, x, bsize, mi_row, mi_col,
1739                                          &frame_mv[NEWMV][ref_frame], &rate_mv,
1740                                          best_rdc.rdcost, 0)) {
1741         continue;
1742       }
1743     }
1744
1745     // If use_golden_nonzeromv is false, NEWMV mode is skipped for golden, no
1746     // need to compute best_pred_sad which is only used to skip golden NEWMV.
1747     if (use_golden_nonzeromv && this_mode == NEWMV && ref_frame == LAST_FRAME &&
1748         frame_mv[NEWMV][LAST_FRAME].as_int != INVALID_MV) {
1749       const int pre_stride = xd->plane[0].pre[0].stride;
1750       const uint8_t *const pre_buf =
1751           xd->plane[0].pre[0].buf +
1752           (frame_mv[NEWMV][LAST_FRAME].as_mv.row >> 3) * pre_stride +
1753           (frame_mv[NEWMV][LAST_FRAME].as_mv.col >> 3);
1754       best_pred_sad = cpi->fn_ptr[bsize].sdf(
1755           x->plane[0].src.buf, x->plane[0].src.stride, pre_buf, pre_stride);
1756       x->pred_mv_sad[LAST_FRAME] = best_pred_sad;
1757     }
1758
1759     if (this_mode != NEARESTMV &&
1760         frame_mv[this_mode][ref_frame].as_int ==
1761             frame_mv[NEARESTMV][ref_frame].as_int)
1762       continue;
1763
1764     mi->mode = this_mode;
1765     mi->mv[0].as_int = frame_mv[this_mode][ref_frame].as_int;
1766
1767     // Search for the best prediction filter type, when the resulting
1768     // motion vector is at sub-pixel accuracy level for luma component, i.e.,
1769     // the last three bits are all zeros.
1770     if (reuse_inter_pred) {
1771       if (!this_mode_pred) {
1772         this_mode_pred = &tmp[3];
1773       } else {
1774         this_mode_pred = &tmp[get_pred_buffer(tmp, 3)];
1775         pd->dst.buf = this_mode_pred->data;
1776         pd->dst.stride = bw;
1777       }
1778     }
1779
1780     if ((this_mode == NEWMV || filter_ref == SWITCHABLE) &&
1781         pred_filter_search &&
1782         (ref_frame == LAST_FRAME ||
1783          (ref_frame == GOLDEN_FRAME &&
1784           (cpi->use_svc || cpi->oxcf.rc_mode == VPX_VBR))) &&
1785         (((mi->mv[0].as_mv.row | mi->mv[0].as_mv.col) & 0x07) != 0)) {
1786       int pf_rate[3];
1787       int64_t pf_dist[3];
1788       unsigned int pf_var[3];
1789       unsigned int pf_sse[3];
1790       TX_SIZE pf_tx_size[3];
1791       int64_t best_cost = INT64_MAX;
1792       INTERP_FILTER best_filter = SWITCHABLE, filter;
1793       PRED_BUFFER *current_pred = this_mode_pred;
1794
1795       for (filter = EIGHTTAP; filter <= EIGHTTAP_SMOOTH; ++filter) {
1796         int64_t cost;
1797         mi->interp_filter = filter;
1798         vp9_build_inter_predictors_sby(xd, mi_row, mi_col, bsize);
1799         model_rd_for_sb_y(cpi, bsize, x, xd, &pf_rate[filter], &pf_dist[filter],
1800                           &pf_var[filter], &pf_sse[filter]);
1801         pf_rate[filter] += vp9_get_switchable_rate(cpi, xd);
1802         cost = RDCOST(x->rdmult, x->rddiv, pf_rate[filter], pf_dist[filter]);
1803         pf_tx_size[filter] = mi->tx_size;
1804         if (cost < best_cost) {
1805           best_filter = filter;
1806           best_cost = cost;
1807           skip_txfm = x->skip_txfm[0];
1808
1809           if (reuse_inter_pred) {
1810             if (this_mode_pred != current_pred) {
1811               free_pred_buffer(this_mode_pred);
1812               this_mode_pred = current_pred;
1813             }
1814             current_pred = &tmp[get_pred_buffer(tmp, 3)];
1815             pd->dst.buf = current_pred->data;
1816             pd->dst.stride = bw;
1817           }
1818         }
1819       }
1820
1821       if (reuse_inter_pred && this_mode_pred != current_pred)
1822         free_pred_buffer(current_pred);
1823
1824       mi->interp_filter = best_filter;
1825       mi->tx_size = pf_tx_size[best_filter];
1826       this_rdc.rate = pf_rate[best_filter];
1827       this_rdc.dist = pf_dist[best_filter];
1828       var_y = pf_var[best_filter];
1829       sse_y = pf_sse[best_filter];
1830       x->skip_txfm[0] = skip_txfm;
1831       if (reuse_inter_pred) {
1832         pd->dst.buf = this_mode_pred->data;
1833         pd->dst.stride = this_mode_pred->stride;
1834       }
1835     } else {
1836       const int large_block = (x->sb_is_skin || cpi->oxcf.speed < 7)
1837                                   ? bsize > BLOCK_32X32
1838                                   : bsize >= BLOCK_32X32;
1839       mi->interp_filter = (filter_ref == SWITCHABLE) ? EIGHTTAP : filter_ref;
1840       vp9_build_inter_predictors_sby(xd, mi_row, mi_col, bsize);
1841
1842       // For large partition blocks, extra testing is done.
1843       if (cpi->oxcf.rc_mode == VPX_CBR && large_block &&
1844           !cyclic_refresh_segment_id_boosted(xd->mi[0]->segment_id) &&
1845           cm->base_qindex) {
1846         model_rd_for_sb_y_large(cpi, bsize, x, xd, &this_rdc.rate,
1847                                 &this_rdc.dist, &var_y, &sse_y, mi_row, mi_col,
1848                                 &this_early_term);
1849       } else {
1850         model_rd_for_sb_y(cpi, bsize, x, xd, &this_rdc.rate, &this_rdc.dist,
1851                           &var_y, &sse_y);
1852       }
1853     }
1854
1855     if (!this_early_term) {
1856       this_sse = (int64_t)sse_y;
1857       block_yrd(cpi, x, &this_rdc, &is_skippable, &this_sse, bsize,
1858                 VPXMIN(mi->tx_size, TX_16X16));
1859       x->skip_txfm[0] = is_skippable;
1860       if (is_skippable) {
1861         this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(cm, xd), 1);
1862       } else {
1863         if (RDCOST(x->rdmult, x->rddiv, this_rdc.rate, this_rdc.dist) <
1864             RDCOST(x->rdmult, x->rddiv, 0, this_sse)) {
1865           this_rdc.rate += vp9_cost_bit(vp9_get_skip_prob(cm, xd), 0);
1866         } else {
1867           this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(cm, xd), 1);
1868           this_rdc.dist = this_sse;
1869           x->skip_txfm[0] = SKIP_TXFM_AC_DC;
1870         }
1871       }
1872
1873       if (cm->interp_filter == SWITCHABLE) {
1874         if ((mi->mv[0].as_mv.row | mi->mv[0].as_mv.col) & 0x07)
1875           this_rdc.rate += vp9_get_switchable_rate(cpi, xd);
1876       }
1877     } else {
1878       this_rdc.rate += cm->interp_filter == SWITCHABLE
1879                            ? vp9_get_switchable_rate(cpi, xd)
1880                            : 0;
1881       this_rdc.rate += vp9_cost_bit(vp9_get_skip_prob(cm, xd), 1);
1882     }
1883
1884     if (x->color_sensitivity[0] || x->color_sensitivity[1]) {
1885       RD_COST rdc_uv;
1886       const BLOCK_SIZE uv_bsize = get_plane_block_size(bsize, &xd->plane[1]);
1887       if (x->color_sensitivity[0])
1888         vp9_build_inter_predictors_sbp(xd, mi_row, mi_col, bsize, 1);
1889       if (x->color_sensitivity[1])
1890         vp9_build_inter_predictors_sbp(xd, mi_row, mi_col, bsize, 2);
1891       model_rd_for_sb_uv(cpi, uv_bsize, x, xd, &rdc_uv, &var_y, &sse_y, 1, 2);
1892       this_rdc.rate += rdc_uv.rate;
1893       this_rdc.dist += rdc_uv.dist;
1894     }
1895
1896     this_rdc.rate += rate_mv;
1897     this_rdc.rate += cpi->inter_mode_cost[x->mbmi_ext->mode_context[ref_frame]]
1898                                          [INTER_OFFSET(this_mode)];
1899     this_rdc.rate += ref_frame_cost[ref_frame];
1900     this_rdc.rdcost = RDCOST(x->rdmult, x->rddiv, this_rdc.rate, this_rdc.dist);
1901
1902     // Bias against NEWMV that is very different from its neighbors, and bias
1903     // to small motion-lastref for noisy input.
1904     if (cpi->oxcf.rc_mode == VPX_CBR && cpi->oxcf.speed >= 5 &&
1905         cpi->oxcf.content != VP9E_CONTENT_SCREEN) {
1906       vp9_NEWMV_diff_bias(&cpi->noise_estimate, xd, this_mode, &this_rdc, bsize,
1907                           frame_mv[this_mode][ref_frame].as_mv.row,
1908                           frame_mv[this_mode][ref_frame].as_mv.col,
1909                           ref_frame == LAST_FRAME);
1910     }
1911
1912     // Skipping checking: test to see if this block can be reconstructed by
1913     // prediction only.
1914     if (cpi->allow_encode_breakout) {
1915       encode_breakout_test(cpi, x, bsize, mi_row, mi_col, ref_frame, this_mode,
1916                            var_y, sse_y, yv12_mb, &this_rdc.rate,
1917                            &this_rdc.dist);
1918       if (x->skip) {
1919         this_rdc.rate += rate_mv;
1920         this_rdc.rdcost =
1921             RDCOST(x->rdmult, x->rddiv, this_rdc.rate, this_rdc.dist);
1922       }
1923     }
1924
1925 #if CONFIG_VP9_TEMPORAL_DENOISING
1926     if (cpi->oxcf.noise_sensitivity > 0 && denoise_svc(cpi) &&
1927         cpi->denoiser.denoising_level > kDenLowLow) {
1928       vp9_denoiser_update_frame_stats(mi, sse_y, this_mode, ctx);
1929       // Keep track of zero_last cost.
1930       if (ref_frame == LAST_FRAME && frame_mv[this_mode][ref_frame].as_int == 0)
1931         zero_last_cost_orig = this_rdc.rdcost;
1932     }
1933 #else
1934     (void)ctx;
1935 #endif
1936
1937     if (this_rdc.rdcost < best_rdc.rdcost || x->skip) {
1938       best_rdc = this_rdc;
1939       best_mode = this_mode;
1940       best_pred_filter = mi->interp_filter;
1941       best_tx_size = mi->tx_size;
1942       best_ref_frame = ref_frame;
1943       best_mode_skip_txfm = x->skip_txfm[0];
1944       best_early_term = this_early_term;
1945
1946       if (reuse_inter_pred) {
1947         free_pred_buffer(best_pred);
1948         best_pred = this_mode_pred;
1949       }
1950     } else {
1951       if (reuse_inter_pred) free_pred_buffer(this_mode_pred);
1952     }
1953
1954     if (x->skip) break;
1955
1956     // If early termination flag is 1 and at least 2 modes are checked,
1957     // the mode search is terminated.
1958     if (best_early_term && idx > 0) {
1959       x->skip = 1;
1960       break;
1961     }
1962   }
1963
1964   mi->mode = best_mode;
1965   mi->interp_filter = best_pred_filter;
1966   mi->tx_size = best_tx_size;
1967   mi->ref_frame[0] = best_ref_frame;
1968   mi->mv[0].as_int = frame_mv[best_mode][best_ref_frame].as_int;
1969   xd->mi[0]->bmi[0].as_mv[0].as_int = mi->mv[0].as_int;
1970   x->skip_txfm[0] = best_mode_skip_txfm;
1971
1972   // For spatial enhancemanent layer: perform intra prediction only if base
1973   // layer is chosen as the reference. Always perform intra prediction if
1974   // LAST is the only reference or is_key_frame is set.
1975   if (cpi->svc.spatial_layer_id) {
1976     perform_intra_pred =
1977         cpi->svc.layer_context[cpi->svc.temporal_layer_id].is_key_frame ||
1978         !(cpi->ref_frame_flags & flag_list[GOLDEN_FRAME]) ||
1979         (!cpi->svc.layer_context[cpi->svc.temporal_layer_id].is_key_frame &&
1980          svc_force_zero_mode[best_ref_frame - 1]);
1981     inter_mode_thresh = (inter_mode_thresh << 1) + inter_mode_thresh;
1982   }
1983   if (cpi->oxcf.lag_in_frames > 0 && cpi->oxcf.rc_mode == VPX_VBR &&
1984       cpi->rc.is_src_frame_alt_ref)
1985     perform_intra_pred = 0;
1986   // Perform intra prediction search, if the best SAD is above a certain
1987   // threshold.
1988   if (best_rdc.rdcost == INT64_MAX ||
1989       ((!force_skip_low_temp_var || bsize < BLOCK_32X32) &&
1990        perform_intra_pred && !x->skip && best_rdc.rdcost > inter_mode_thresh &&
1991        bsize <= cpi->sf.max_intra_bsize && !x->skip_low_source_sad)) {
1992     struct estimate_block_intra_args args = { cpi, x, DC_PRED, 1, 0 };
1993     int i;
1994     TX_SIZE best_intra_tx_size = TX_SIZES;
1995     TX_SIZE intra_tx_size =
1996         VPXMIN(max_txsize_lookup[bsize],
1997                tx_mode_to_biggest_tx_size[cpi->common.tx_mode]);
1998     if (cpi->oxcf.content != VP9E_CONTENT_SCREEN && intra_tx_size > TX_16X16)
1999       intra_tx_size = TX_16X16;
2000
2001     if (reuse_inter_pred && best_pred != NULL) {
2002       if (best_pred->data == orig_dst.buf) {
2003         this_mode_pred = &tmp[get_pred_buffer(tmp, 3)];
2004 #if CONFIG_VP9_HIGHBITDEPTH
2005         if (cm->use_highbitdepth)
2006           vpx_highbd_convolve_copy(best_pred->data, best_pred->stride,
2007                                    this_mode_pred->data, this_mode_pred->stride,
2008                                    NULL, 0, NULL, 0, bw, bh, xd->bd);
2009         else
2010           vpx_convolve_copy(best_pred->data, best_pred->stride,
2011                             this_mode_pred->data, this_mode_pred->stride, NULL,
2012                             0, NULL, 0, bw, bh);
2013 #else
2014         vpx_convolve_copy(best_pred->data, best_pred->stride,
2015                           this_mode_pred->data, this_mode_pred->stride, NULL, 0,
2016                           NULL, 0, bw, bh);
2017 #endif  // CONFIG_VP9_HIGHBITDEPTH
2018         best_pred = this_mode_pred;
2019       }
2020     }
2021     pd->dst = orig_dst;
2022
2023     for (i = 0; i < 4; ++i) {
2024       const PREDICTION_MODE this_mode = intra_mode_list[i];
2025       THR_MODES mode_index = mode_idx[INTRA_FRAME][mode_offset(this_mode)];
2026       int mode_rd_thresh = rd_threshes[mode_index];
2027       if (sf->short_circuit_flat_blocks && x->source_variance == 0 &&
2028           this_mode != DC_PRED) {
2029         continue;
2030       }
2031
2032       if (!((1 << this_mode) & cpi->sf.intra_y_mode_bsize_mask[bsize]))
2033         continue;
2034
2035       if (rd_less_than_thresh(
2036               best_rdc.rdcost, mode_rd_thresh,
2037 #if CONFIG_MULTITHREAD
2038               // Synchronization of this function is only necessary when
2039               // adaptive_rd_thresh is > 0.
2040               cpi->sf.adaptive_rd_thresh ? tile_data->enc_row_mt_mutex : NULL,
2041 #endif
2042               &rd_thresh_freq_fact[mode_index]))
2043         continue;
2044
2045       mi->mode = this_mode;
2046       mi->ref_frame[0] = INTRA_FRAME;
2047       this_rdc.dist = this_rdc.rate = 0;
2048       args.mode = this_mode;
2049       args.skippable = 1;
2050       args.rdc = &this_rdc;
2051       mi->tx_size = intra_tx_size;
2052       vp9_foreach_transformed_block_in_plane(xd, bsize, 0, estimate_block_intra,
2053                                              &args);
2054       // Check skip cost here since skippable is not set for for uv, this
2055       // mirrors the behavior used by inter
2056       if (args.skippable) {
2057         x->skip_txfm[0] = SKIP_TXFM_AC_DC;
2058         this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), 1);
2059       } else {
2060         x->skip_txfm[0] = SKIP_TXFM_NONE;
2061         this_rdc.rate += vp9_cost_bit(vp9_get_skip_prob(&cpi->common, xd), 0);
2062       }
2063       // Inter and intra RD will mismatch in scale for non-screen content.
2064       if (cpi->oxcf.content == VP9E_CONTENT_SCREEN) {
2065         if (x->color_sensitivity[0])
2066           vp9_foreach_transformed_block_in_plane(xd, bsize, 1,
2067                                                  estimate_block_intra, &args);
2068         if (x->color_sensitivity[1])
2069           vp9_foreach_transformed_block_in_plane(xd, bsize, 2,
2070                                                  estimate_block_intra, &args);
2071       }
2072       this_rdc.rate += cpi->mbmode_cost[this_mode];
2073       this_rdc.rate += ref_frame_cost[INTRA_FRAME];
2074       this_rdc.rate += intra_cost_penalty;
2075       this_rdc.rdcost =
2076           RDCOST(x->rdmult, x->rddiv, this_rdc.rate, this_rdc.dist);
2077
2078       if (this_rdc.rdcost < best_rdc.rdcost) {
2079         best_rdc = this_rdc;
2080         best_mode = this_mode;
2081         best_intra_tx_size = mi->tx_size;
2082         best_ref_frame = INTRA_FRAME;
2083         mi->uv_mode = this_mode;
2084         mi->mv[0].as_int = INVALID_MV;
2085         best_mode_skip_txfm = x->skip_txfm[0];
2086       }
2087     }
2088
2089     // Reset mb_mode_info to the best inter mode.
2090     if (best_ref_frame != INTRA_FRAME) {
2091       mi->tx_size = best_tx_size;
2092     } else {
2093       mi->tx_size = best_intra_tx_size;
2094     }
2095   }
2096
2097   pd->dst = orig_dst;
2098   mi->mode = best_mode;
2099   mi->ref_frame[0] = best_ref_frame;
2100   x->skip_txfm[0] = best_mode_skip_txfm;
2101
2102   if (!is_inter_block(mi)) {
2103     mi->interp_filter = SWITCHABLE_FILTERS;
2104   }
2105
2106   if (reuse_inter_pred && best_pred != NULL) {
2107     if (best_pred->data != orig_dst.buf && is_inter_mode(mi->mode)) {
2108 #if CONFIG_VP9_HIGHBITDEPTH
2109       if (cm->use_highbitdepth)
2110         vpx_highbd_convolve_copy(best_pred->data, best_pred->stride,
2111                                  pd->dst.buf, pd->dst.stride, NULL, 0, NULL, 0,
2112                                  bw, bh, xd->bd);
2113       else
2114         vpx_convolve_copy(best_pred->data, best_pred->stride, pd->dst.buf,
2115                           pd->dst.stride, NULL, 0, NULL, 0, bw, bh);
2116 #else
2117       vpx_convolve_copy(best_pred->data, best_pred->stride, pd->dst.buf,
2118                         pd->dst.stride, NULL, 0, NULL, 0, bw, bh);
2119 #endif  // CONFIG_VP9_HIGHBITDEPTH
2120     }
2121   }
2122
2123 #if CONFIG_VP9_TEMPORAL_DENOISING
2124   if (cpi->oxcf.noise_sensitivity > 0 && cpi->resize_pending == 0 &&
2125       denoise_svc(cpi) && cpi->denoiser.denoising_level > kDenLowLow &&
2126       cpi->denoiser.reset == 0) {
2127     VP9_DENOISER_DECISION decision = COPY_BLOCK;
2128     vp9_pickmode_ctx_den_update(&ctx_den, zero_last_cost_orig, ref_frame_cost,
2129                                 frame_mv, reuse_inter_pred, best_tx_size,
2130                                 best_mode, best_ref_frame, best_pred_filter,
2131                                 best_mode_skip_txfm);
2132     vp9_denoiser_denoise(cpi, x, mi_row, mi_col, bsize, ctx, &decision);
2133     recheck_zeromv_after_denoising(cpi, mi, x, xd, decision, &ctx_den, yv12_mb,
2134                                    &best_rdc, bsize, mi_row, mi_col);
2135     best_ref_frame = ctx_den.best_ref_frame;
2136   }
2137 #endif
2138
2139   if (cpi->sf.adaptive_rd_thresh) {
2140     THR_MODES best_mode_idx = mode_idx[best_ref_frame][mode_offset(mi->mode)];
2141
2142     if (best_ref_frame == INTRA_FRAME) {
2143       // Only consider the modes that are included in the intra_mode_list.
2144       int intra_modes = sizeof(intra_mode_list) / sizeof(PREDICTION_MODE);
2145       int i;
2146
2147       // TODO(yunqingwang): Check intra mode mask and only update freq_fact
2148       // for those valid modes.
2149       for (i = 0; i < intra_modes; i++) {
2150         update_thresh_freq_fact(cpi, tile_data, x->source_variance, bsize,
2151                                 INTRA_FRAME, best_mode_idx, intra_mode_list[i]);
2152       }
2153     } else {
2154       for (ref_frame = LAST_FRAME; ref_frame <= GOLDEN_FRAME; ++ref_frame) {
2155         PREDICTION_MODE this_mode;
2156         if (best_ref_frame != ref_frame) continue;
2157         for (this_mode = NEARESTMV; this_mode <= NEWMV; ++this_mode) {
2158           update_thresh_freq_fact(cpi, tile_data, x->source_variance, bsize,
2159                                   ref_frame, best_mode_idx, this_mode);
2160         }
2161       }
2162     }
2163   }
2164
2165   *rd_cost = best_rdc;
2166 }
2167
2168 void vp9_pick_inter_mode_sub8x8(VP9_COMP *cpi, MACROBLOCK *x, int mi_row,
2169                                 int mi_col, RD_COST *rd_cost, BLOCK_SIZE bsize,
2170                                 PICK_MODE_CONTEXT *ctx) {
2171   VP9_COMMON *const cm = &cpi->common;
2172   SPEED_FEATURES *const sf = &cpi->sf;
2173   MACROBLOCKD *const xd = &x->e_mbd;
2174   MODE_INFO *const mi = xd->mi[0];
2175   MB_MODE_INFO_EXT *const mbmi_ext = x->mbmi_ext;
2176   const struct segmentation *const seg = &cm->seg;
2177   MV_REFERENCE_FRAME ref_frame, second_ref_frame = NONE;
2178   MV_REFERENCE_FRAME best_ref_frame = NONE;
2179   unsigned char segment_id = mi->segment_id;
2180   struct buf_2d yv12_mb[4][MAX_MB_PLANE];
2181   static const int flag_list[4] = { 0, VP9_LAST_FLAG, VP9_GOLD_FLAG,
2182                                     VP9_ALT_FLAG };
2183   int64_t best_rd = INT64_MAX;
2184   b_mode_info bsi[MAX_REF_FRAMES][4];
2185   int ref_frame_skip_mask = 0;
2186   const int num_4x4_blocks_wide = num_4x4_blocks_wide_lookup[bsize];
2187   const int num_4x4_blocks_high = num_4x4_blocks_high_lookup[bsize];
2188   int idx, idy;
2189
2190   x->skip_encode = sf->skip_encode_frame && x->q_index < QIDX_SKIP_THRESH;
2191   ctx->pred_pixel_ready = 0;
2192
2193   for (ref_frame = LAST_FRAME; ref_frame <= GOLDEN_FRAME; ++ref_frame) {
2194     const YV12_BUFFER_CONFIG *yv12 = get_ref_frame_buffer(cpi, ref_frame);
2195     int_mv dummy_mv[2];
2196     x->pred_mv_sad[ref_frame] = INT_MAX;
2197
2198     if ((cpi->ref_frame_flags & flag_list[ref_frame]) && (yv12 != NULL)) {
2199       int_mv *const candidates = mbmi_ext->ref_mvs[ref_frame];
2200       const struct scale_factors *const sf = &cm->frame_refs[ref_frame - 1].sf;
2201       vp9_setup_pred_block(xd, yv12_mb[ref_frame], yv12, mi_row, mi_col, sf,
2202                            sf);
2203       vp9_find_mv_refs(cm, xd, xd->mi[0], ref_frame, candidates, mi_row, mi_col,
2204                        mbmi_ext->mode_context);
2205
2206       vp9_find_best_ref_mvs(xd, cm->allow_high_precision_mv, candidates,
2207                             &dummy_mv[0], &dummy_mv[1]);
2208     } else {
2209       ref_frame_skip_mask |= (1 << ref_frame);
2210     }
2211   }
2212
2213   mi->sb_type = bsize;
2214   mi->tx_size = TX_4X4;
2215   mi->uv_mode = DC_PRED;
2216   mi->ref_frame[0] = LAST_FRAME;
2217   mi->ref_frame[1] = NONE;
2218   mi->interp_filter =
2219       cm->interp_filter == SWITCHABLE ? EIGHTTAP : cm->interp_filter;
2220
2221   for (ref_frame = LAST_FRAME; ref_frame <= GOLDEN_FRAME; ++ref_frame) {
2222     int64_t this_rd = 0;
2223     int plane;
2224
2225     if (ref_frame_skip_mask & (1 << ref_frame)) continue;
2226
2227 #if CONFIG_BETTER_HW_COMPATIBILITY
2228     if ((bsize == BLOCK_8X4 || bsize == BLOCK_4X8) && ref_frame > INTRA_FRAME &&
2229         vp9_is_scaled(&cm->frame_refs[ref_frame - 1].sf))
2230       continue;
2231 #endif
2232
2233     // TODO(jingning, agrange): Scaling reference frame not supported for
2234     // sub8x8 blocks. Is this supported now?
2235     if (ref_frame > INTRA_FRAME &&
2236         vp9_is_scaled(&cm->frame_refs[ref_frame - 1].sf))
2237       continue;
2238
2239     // If the segment reference frame feature is enabled....
2240     // then do nothing if the current ref frame is not allowed..
2241     if (segfeature_active(seg, segment_id, SEG_LVL_REF_FRAME) &&
2242         get_segdata(seg, segment_id, SEG_LVL_REF_FRAME) != (int)ref_frame)
2243       continue;
2244
2245     mi->ref_frame[0] = ref_frame;
2246     x->skip = 0;
2247     set_ref_ptrs(cm, xd, ref_frame, second_ref_frame);
2248
2249     // Select prediction reference frames.
2250     for (plane = 0; plane < MAX_MB_PLANE; plane++)
2251       xd->plane[plane].pre[0] = yv12_mb[ref_frame][plane];
2252
2253     for (idy = 0; idy < 2; idy += num_4x4_blocks_high) {
2254       for (idx = 0; idx < 2; idx += num_4x4_blocks_wide) {
2255         int_mv b_mv[MB_MODE_COUNT];
2256         int64_t b_best_rd = INT64_MAX;
2257         const int i = idy * 2 + idx;
2258         PREDICTION_MODE this_mode;
2259         RD_COST this_rdc;
2260         unsigned int var_y, sse_y;
2261
2262         struct macroblock_plane *p = &x->plane[0];
2263         struct macroblockd_plane *pd = &xd->plane[0];
2264
2265         const struct buf_2d orig_src = p->src;
2266         const struct buf_2d orig_dst = pd->dst;
2267         struct buf_2d orig_pre[2];
2268         memcpy(orig_pre, xd->plane[0].pre, sizeof(orig_pre));
2269
2270         // set buffer pointers for sub8x8 motion search.
2271         p->src.buf =
2272             &p->src.buf[vp9_raster_block_offset(BLOCK_8X8, i, p->src.stride)];
2273         pd->dst.buf =
2274             &pd->dst.buf[vp9_raster_block_offset(BLOCK_8X8, i, pd->dst.stride)];
2275         pd->pre[0].buf =
2276             &pd->pre[0]
2277                  .buf[vp9_raster_block_offset(BLOCK_8X8, i, pd->pre[0].stride)];
2278
2279         b_mv[ZEROMV].as_int = 0;
2280         b_mv[NEWMV].as_int = INVALID_MV;
2281         vp9_append_sub8x8_mvs_for_idx(cm, xd, i, 0, mi_row, mi_col,
2282                                       &b_mv[NEARESTMV], &b_mv[NEARMV],
2283                                       mbmi_ext->mode_context);
2284
2285         for (this_mode = NEARESTMV; this_mode <= NEWMV; ++this_mode) {
2286           int b_rate = 0;
2287           xd->mi[0]->bmi[i].as_mv[0].as_int = b_mv[this_mode].as_int;
2288
2289           if (this_mode == NEWMV) {
2290             const int step_param = cpi->sf.mv.fullpel_search_step_param;
2291             MV mvp_full;
2292             MV tmp_mv;
2293             int cost_list[5];
2294             const MvLimits tmp_mv_limits = x->mv_limits;
2295             uint32_t dummy_dist;
2296
2297             if (i == 0) {
2298               mvp_full.row = b_mv[NEARESTMV].as_mv.row >> 3;
2299               mvp_full.col = b_mv[NEARESTMV].as_mv.col >> 3;
2300             } else {
2301               mvp_full.row = xd->mi[0]->bmi[0].as_mv[0].as_mv.row >> 3;
2302               mvp_full.col = xd->mi[0]->bmi[0].as_mv[0].as_mv.col >> 3;
2303             }
2304
2305             vp9_set_mv_search_range(&x->mv_limits,
2306                                     &mbmi_ext->ref_mvs[0]->as_mv);
2307
2308             vp9_full_pixel_search(
2309                 cpi, x, bsize, &mvp_full, step_param, cpi->sf.mv.search_method,
2310                 x->sadperbit4, cond_cost_list(cpi, cost_list),
2311                 &mbmi_ext->ref_mvs[ref_frame][0].as_mv, &tmp_mv, INT_MAX, 0);
2312
2313             x->mv_limits = tmp_mv_limits;
2314
2315             // calculate the bit cost on motion vector
2316             mvp_full.row = tmp_mv.row * 8;
2317             mvp_full.col = tmp_mv.col * 8;
2318
2319             b_rate += vp9_mv_bit_cost(
2320                 &mvp_full, &mbmi_ext->ref_mvs[ref_frame][0].as_mv,
2321                 x->nmvjointcost, x->mvcost, MV_COST_WEIGHT);
2322
2323             b_rate += cpi->inter_mode_cost[x->mbmi_ext->mode_context[ref_frame]]
2324                                           [INTER_OFFSET(NEWMV)];
2325             if (RDCOST(x->rdmult, x->rddiv, b_rate, 0) > b_best_rd) continue;
2326
2327             cpi->find_fractional_mv_step(
2328                 x, &tmp_mv, &mbmi_ext->ref_mvs[ref_frame][0].as_mv,
2329                 cpi->common.allow_high_precision_mv, x->errorperbit,
2330                 &cpi->fn_ptr[bsize], cpi->sf.mv.subpel_force_stop,
2331                 cpi->sf.mv.subpel_iters_per_step,
2332                 cond_cost_list(cpi, cost_list), x->nmvjointcost, x->mvcost,
2333                 &dummy_dist, &x->pred_sse[ref_frame], NULL, 0, 0);
2334
2335             xd->mi[0]->bmi[i].as_mv[0].as_mv = tmp_mv;
2336           } else {
2337             b_rate += cpi->inter_mode_cost[x->mbmi_ext->mode_context[ref_frame]]
2338                                           [INTER_OFFSET(this_mode)];
2339           }
2340
2341 #if CONFIG_VP9_HIGHBITDEPTH
2342           if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
2343             vp9_highbd_build_inter_predictor(
2344                 pd->pre[0].buf, pd->pre[0].stride, pd->dst.buf, pd->dst.stride,
2345                 &xd->mi[0]->bmi[i].as_mv[0].as_mv, &xd->block_refs[0]->sf,
2346                 4 * num_4x4_blocks_wide, 4 * num_4x4_blocks_high, 0,
2347                 vp9_filter_kernels[mi->interp_filter], MV_PRECISION_Q3,
2348                 mi_col * MI_SIZE + 4 * (i & 0x01),
2349                 mi_row * MI_SIZE + 4 * (i >> 1), xd->bd);
2350           } else {
2351 #endif
2352             vp9_build_inter_predictor(
2353                 pd->pre[0].buf, pd->pre[0].stride, pd->dst.buf, pd->dst.stride,
2354                 &xd->mi[0]->bmi[i].as_mv[0].as_mv, &xd->block_refs[0]->sf,
2355                 4 * num_4x4_blocks_wide, 4 * num_4x4_blocks_high, 0,
2356                 vp9_filter_kernels[mi->interp_filter], MV_PRECISION_Q3,
2357                 mi_col * MI_SIZE + 4 * (i & 0x01),
2358                 mi_row * MI_SIZE + 4 * (i >> 1));
2359
2360 #if CONFIG_VP9_HIGHBITDEPTH
2361           }
2362 #endif
2363
2364           model_rd_for_sb_y(cpi, bsize, x, xd, &this_rdc.rate, &this_rdc.dist,
2365                             &var_y, &sse_y);
2366
2367           this_rdc.rate += b_rate;
2368           this_rdc.rdcost =
2369               RDCOST(x->rdmult, x->rddiv, this_rdc.rate, this_rdc.dist);
2370           if (this_rdc.rdcost < b_best_rd) {
2371             b_best_rd = this_rdc.rdcost;
2372             bsi[ref_frame][i].as_mode = this_mode;
2373             bsi[ref_frame][i].as_mv[0].as_mv = xd->mi[0]->bmi[i].as_mv[0].as_mv;
2374           }
2375         }  // mode search
2376
2377         // restore source and prediction buffer pointers.
2378         p->src = orig_src;
2379         pd->pre[0] = orig_pre[0];
2380         pd->dst = orig_dst;
2381         this_rd += b_best_rd;
2382
2383         xd->mi[0]->bmi[i] = bsi[ref_frame][i];
2384         if (num_4x4_blocks_wide > 1) xd->mi[0]->bmi[i + 1] = xd->mi[0]->bmi[i];
2385         if (num_4x4_blocks_high > 1) xd->mi[0]->bmi[i + 2] = xd->mi[0]->bmi[i];
2386       }
2387     }  // loop through sub8x8 blocks
2388
2389     if (this_rd < best_rd) {
2390       best_rd = this_rd;
2391       best_ref_frame = ref_frame;
2392     }
2393   }  // reference frames
2394
2395   mi->tx_size = TX_4X4;
2396   mi->ref_frame[0] = best_ref_frame;
2397   for (idy = 0; idy < 2; idy += num_4x4_blocks_high) {
2398     for (idx = 0; idx < 2; idx += num_4x4_blocks_wide) {
2399       const int block = idy * 2 + idx;
2400       xd->mi[0]->bmi[block] = bsi[best_ref_frame][block];
2401       if (num_4x4_blocks_wide > 1)
2402         xd->mi[0]->bmi[block + 1] = bsi[best_ref_frame][block];
2403       if (num_4x4_blocks_high > 1)
2404         xd->mi[0]->bmi[block + 2] = bsi[best_ref_frame][block];
2405     }
2406   }
2407   mi->mode = xd->mi[0]->bmi[3].as_mode;
2408   ctx->mic = *(xd->mi[0]);
2409   ctx->mbmi_ext = *x->mbmi_ext;
2410   ctx->skip_txfm[0] = SKIP_TXFM_NONE;
2411   ctx->skip = 0;
2412   // Dummy assignment for speed -5. No effect in speed -6.
2413   rd_cost->rdcost = best_rd;
2414 }