61d6612cd2cd7f7c84c47076d191375028996a8a
[profile/ivi/libvpx.git] / vp8 / encoder / pickinter.c
1 /*
2  *  Copyright (c) 2010 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
12 #include <limits.h>
13 #include "vpx_ports/config.h"
14 #include "onyx_int.h"
15 #include "modecosts.h"
16 #include "encodeintra.h"
17 #include "vp8/common/entropymode.h"
18 #include "pickinter.h"
19 #include "vp8/common/findnearmv.h"
20 #include "encodemb.h"
21 #include "vp8/common/reconinter.h"
22 #include "vp8/common/reconintra.h"
23 #include "vp8/common/reconintra4x4.h"
24 #include "vp8/common/g_common.h"
25 #include "variance.h"
26 #include "mcomp.h"
27 #include "rdopt.h"
28 #include "vpx_mem/vpx_mem.h"
29
30 #if CONFIG_RUNTIME_CPU_DETECT
31 #define IF_RTCD(x) (x)
32 #else
33 #define IF_RTCD(x)  NULL
34 #endif
35
36 extern int VP8_UVSSE(MACROBLOCK *x, const vp8_variance_rtcd_vtable_t *rtcd);
37
38 #ifdef SPEEDSTATS
39 extern unsigned int cnt_pm;
40 #endif
41
42 extern const MV_REFERENCE_FRAME vp8_ref_frame_order[MAX_MODES];
43 extern const MB_PREDICTION_MODE vp8_mode_order[MAX_MODES];
44
45
46 extern unsigned int (*vp8_get16x16pred_error)(unsigned char *src_ptr, int src_stride, unsigned char *ref_ptr, int ref_stride);
47 extern unsigned int (*vp8_get4x4sse_cs)(unsigned char *src_ptr, int  source_stride, unsigned char *ref_ptr, int  recon_stride);
48 extern int vp8_rd_pick_best_mbsegmentation(VP8_COMP *cpi, MACROBLOCK *x, MV *best_ref_mv, int best_rd, int *, int *, int *, int, int *mvcost[2], int, int fullpixel);
49 extern int vp8_cost_mv_ref(MB_PREDICTION_MODE m, const int near_mv_ref_ct[4]);
50 extern void vp8_set_mbmode_and_mvs(MACROBLOCK *x, MB_PREDICTION_MODE mb, int_mv *mv);
51
52
53 int vp8_skip_fractional_mv_step(MACROBLOCK *mb, BLOCK *b, BLOCKD *d,
54                                 int_mv *bestmv, int_mv *ref_mv,
55                                 int error_per_bit,
56                                 const vp8_variance_fn_ptr_t *vfp,
57                                 int *mvcost[2], int *distortion,
58                                 unsigned int *sse)
59 {
60     (void) b;
61     (void) d;
62     (void) ref_mv;
63     (void) error_per_bit;
64     (void) vfp;
65     (void) mvcost;
66     (void) distortion;
67     (void) sse;
68     bestmv->as_mv.row <<= 3;
69     bestmv->as_mv.col <<= 3;
70     return 0;
71 }
72
73
74 static int get_inter_mbpred_error(MACROBLOCK *mb, const vp8_variance_fn_ptr_t *vfp, unsigned int *sse)
75 {
76
77     BLOCK *b = &mb->block[0];
78     BLOCKD *d = &mb->e_mbd.block[0];
79     unsigned char *what = (*(b->base_src) + b->src);
80     int what_stride = b->src_stride;
81     unsigned char *in_what = *(d->base_pre) + d->pre ;
82     int in_what_stride = d->pre_stride;
83     int xoffset = d->bmi.mv.as_mv.col & 7;
84     int yoffset = d->bmi.mv.as_mv.row & 7;
85
86     in_what += (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
87
88     if (xoffset | yoffset)
89     {
90         return vfp->svf(in_what, in_what_stride, xoffset, yoffset, what, what_stride, sse);
91     }
92     else
93     {
94         return vfp->vf(what, what_stride, in_what, in_what_stride, sse);
95     }
96
97 }
98
99 unsigned int vp8_get16x16pred_error_c
100 (
101     const unsigned char *src_ptr,
102     int src_stride,
103     const unsigned char *ref_ptr,
104     int ref_stride,
105     int max_sad
106 )
107 {
108     unsigned pred_error = 0;
109     int i, j;
110     int sum = 0;
111
112     for (i = 0; i < 16; i++)
113     {
114         int diff;
115
116         for (j = 0; j < 16; j++)
117         {
118             diff = src_ptr[j] - ref_ptr[j];
119             sum += diff;
120             pred_error += diff * diff;
121         }
122
123         src_ptr += src_stride;
124         ref_ptr += ref_stride;
125     }
126
127     pred_error -= sum * sum / 256;
128     return pred_error;
129 }
130
131
132 unsigned int vp8_get4x4sse_cs_c
133 (
134     const unsigned char *src_ptr,
135     int  source_stride,
136     const unsigned char *ref_ptr,
137     int  recon_stride,
138     int max_sad
139 )
140 {
141     int distortion = 0;
142     int r, c;
143
144     for (r = 0; r < 4; r++)
145     {
146         for (c = 0; c < 4; c++)
147         {
148             int diff = src_ptr[c] - ref_ptr[c];
149             distortion += diff * diff;
150         }
151
152         src_ptr += source_stride;
153         ref_ptr += recon_stride;
154     }
155
156     return distortion;
157 }
158
159 static int get_prediction_error(BLOCK *be, BLOCKD *b, const vp8_variance_rtcd_vtable_t *rtcd)
160 {
161     unsigned char *sptr;
162     unsigned char *dptr;
163     sptr = (*(be->base_src) + be->src);
164     dptr = b->predictor;
165
166     return VARIANCE_INVOKE(rtcd, get4x4sse_cs)(sptr, be->src_stride, dptr, 16, 0x7fffffff);
167
168 }
169
170 static int pick_intra4x4block(
171     const VP8_ENCODER_RTCD *rtcd,
172     MACROBLOCK *x,
173     BLOCK *be,
174     BLOCKD *b,
175     B_PREDICTION_MODE *best_mode,
176     B_PREDICTION_MODE above,
177     B_PREDICTION_MODE left,
178
179     int *bestrate,
180     int *bestdistortion)
181 {
182     B_PREDICTION_MODE mode;
183     int best_rd = INT_MAX;       // 1<<30
184     int rate;
185     int distortion;
186     unsigned int *mode_costs;
187
188     if (x->e_mbd.frame_type == KEY_FRAME)
189     {
190         mode_costs = x->bmode_costs[above][left];
191     }
192     else
193     {
194         mode_costs = x->inter_bmode_costs;
195     }
196
197     for (mode = B_DC_PRED; mode <= B_HE_PRED /*B_HU_PRED*/; mode++)
198     {
199         int this_rd;
200
201         rate = mode_costs[mode];
202         RECON_INVOKE(&rtcd->common->recon, intra4x4_predict)
203                      (b, mode, b->predictor);
204         distortion = get_prediction_error(be, b, &rtcd->variance);
205         this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
206
207         if (this_rd < best_rd)
208         {
209             *bestrate = rate;
210             *bestdistortion = distortion;
211             best_rd = this_rd;
212             *best_mode = mode;
213         }
214     }
215
216     b->bmi.mode = (B_PREDICTION_MODE)(*best_mode);
217     vp8_encode_intra4x4block(rtcd, x, be, b, b->bmi.mode);
218
219     return best_rd;
220 }
221
222
223 int vp8_pick_intra4x4mby_modes
224 (
225     const VP8_ENCODER_RTCD *rtcd,
226     MACROBLOCK *mb,
227     int *Rate,
228     int *best_dist
229 )
230 {
231     MACROBLOCKD *const xd = &mb->e_mbd;
232     int i;
233     int cost = mb->mbmode_cost [xd->frame_type] [B_PRED];
234     int error;
235     int distortion = 0;
236
237     vp8_intra_prediction_down_copy(xd);
238
239     for (i = 0; i < 16; i++)
240     {
241         MODE_INFO *const mic = xd->mode_info_context;
242         const int mis = xd->mode_info_stride;
243         const B_PREDICTION_MODE A = vp8_above_bmi(mic, i, mis)->mode;
244         const B_PREDICTION_MODE L = vp8_left_bmi(mic, i)->mode;
245         B_PREDICTION_MODE UNINITIALIZED_IS_SAFE(best_mode);
246         int UNINITIALIZED_IS_SAFE(r), UNINITIALIZED_IS_SAFE(d);
247
248         pick_intra4x4block(rtcd, mb, mb->block + i, xd->block + i,
249                                &best_mode, A, L, &r, &d);
250
251         cost += r;
252         distortion += d;
253
254         mic->bmi[i].mode = xd->block[i].bmi.mode = best_mode;
255
256         // Break out case where we have already exceeded best so far value
257         // that was passed in
258         if (distortion > *best_dist)
259             break;
260     }
261
262     *Rate = cost;
263
264     if (i == 16)
265     {
266         *best_dist = distortion;
267         error = RDCOST(mb->rdmult, mb->rddiv, cost, distortion);
268     }
269     else
270     {
271         *best_dist = INT_MAX;
272         error = INT_MAX;
273     }
274
275     for (i = 0; i < 16; i++)
276         xd->block[i].bmi.mv.as_int = 0;
277
278     return error;
279 }
280
281 void vp8_pick_intra_mbuv_mode(MACROBLOCK *mb)
282 {
283
284     MACROBLOCKD *x = &mb->e_mbd;
285     unsigned char *uabove_row = x->dst.u_buffer - x->dst.uv_stride;
286     unsigned char *vabove_row = x->dst.v_buffer - x->dst.uv_stride;
287     unsigned char *usrc_ptr = (mb->block[16].src + *mb->block[16].base_src);
288     unsigned char *vsrc_ptr = (mb->block[20].src + *mb->block[20].base_src);
289     int uvsrc_stride = mb->block[16].src_stride;
290     unsigned char uleft_col[8];
291     unsigned char vleft_col[8];
292     unsigned char utop_left = uabove_row[-1];
293     unsigned char vtop_left = vabove_row[-1];
294     int i, j;
295     int expected_udc;
296     int expected_vdc;
297     int shift;
298     int Uaverage = 0;
299     int Vaverage = 0;
300     int diff;
301     int pred_error[4] = {0, 0, 0, 0}, best_error = INT_MAX;
302     MB_PREDICTION_MODE UNINITIALIZED_IS_SAFE(best_mode);
303
304
305     for (i = 0; i < 8; i++)
306     {
307         uleft_col[i] = x->dst.u_buffer [i* x->dst.uv_stride -1];
308         vleft_col[i] = x->dst.v_buffer [i* x->dst.uv_stride -1];
309     }
310
311     if (!x->up_available && !x->left_available)
312     {
313         expected_udc = 128;
314         expected_vdc = 128;
315     }
316     else
317     {
318         shift = 2;
319
320         if (x->up_available)
321         {
322
323             for (i = 0; i < 8; i++)
324             {
325                 Uaverage += uabove_row[i];
326                 Vaverage += vabove_row[i];
327             }
328
329             shift ++;
330
331         }
332
333         if (x->left_available)
334         {
335             for (i = 0; i < 8; i++)
336             {
337                 Uaverage += uleft_col[i];
338                 Vaverage += vleft_col[i];
339             }
340
341             shift ++;
342
343         }
344
345         expected_udc = (Uaverage + (1 << (shift - 1))) >> shift;
346         expected_vdc = (Vaverage + (1 << (shift - 1))) >> shift;
347     }
348
349
350     for (i = 0; i < 8; i++)
351     {
352         for (j = 0; j < 8; j++)
353         {
354
355             int predu = uleft_col[i] + uabove_row[j] - utop_left;
356             int predv = vleft_col[i] + vabove_row[j] - vtop_left;
357             int u_p, v_p;
358
359             u_p = usrc_ptr[j];
360             v_p = vsrc_ptr[j];
361
362             if (predu < 0)
363                 predu = 0;
364
365             if (predu > 255)
366                 predu = 255;
367
368             if (predv < 0)
369                 predv = 0;
370
371             if (predv > 255)
372                 predv = 255;
373
374
375             diff = u_p - expected_udc;
376             pred_error[DC_PRED] += diff * diff;
377             diff = v_p - expected_vdc;
378             pred_error[DC_PRED] += diff * diff;
379
380
381             diff = u_p - uabove_row[j];
382             pred_error[V_PRED] += diff * diff;
383             diff = v_p - vabove_row[j];
384             pred_error[V_PRED] += diff * diff;
385
386
387             diff = u_p - uleft_col[i];
388             pred_error[H_PRED] += diff * diff;
389             diff = v_p - vleft_col[i];
390             pred_error[H_PRED] += diff * diff;
391
392
393             diff = u_p - predu;
394             pred_error[TM_PRED] += diff * diff;
395             diff = v_p - predv;
396             pred_error[TM_PRED] += diff * diff;
397
398
399         }
400
401         usrc_ptr += uvsrc_stride;
402         vsrc_ptr += uvsrc_stride;
403
404         if (i == 3)
405         {
406             usrc_ptr = (mb->block[18].src + *mb->block[18].base_src);
407             vsrc_ptr = (mb->block[22].src + *mb->block[22].base_src);
408         }
409
410
411
412     }
413
414
415     for (i = DC_PRED; i <= TM_PRED; i++)
416     {
417         if (best_error > pred_error[i])
418         {
419             best_error = pred_error[i];
420             best_mode = (MB_PREDICTION_MODE)i;
421         }
422     }
423
424
425     mb->e_mbd.mode_info_context->mbmi.uv_mode = best_mode;
426
427 }
428
429 void vp8_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset, int recon_uvoffset, int *returnrate, int *returndistortion, int *returnintra)
430 {
431     BLOCK *b = &x->block[0];
432     BLOCKD *d = &x->e_mbd.block[0];
433     MACROBLOCKD *xd = &x->e_mbd;
434     B_MODE_INFO best_bmodes[16];
435     MB_MODE_INFO best_mbmode;
436     PARTITION_INFO best_partition;
437     int_mv best_ref_mv;
438     int_mv mode_mv[MB_MODE_COUNT];
439     MB_PREDICTION_MODE this_mode;
440     int num00;
441     int i;
442     int mdcounts[4];
443     int best_rd = INT_MAX; // 1 << 30;
444     int best_intra_rd = INT_MAX;
445     int mode_index;
446     int ref_frame_cost[MAX_REF_FRAMES];
447     int rate;
448     int rate2;
449     int distortion2;
450     int bestsme;
451     //int all_rds[MAX_MODES];         // Experimental debug code.
452     int best_mode_index = 0;
453     unsigned int sse = INT_MAX;
454
455     int_mv mvp;
456     int near_sadidx[8] = {0, 1, 2, 3, 4, 5, 6, 7};
457     int saddone=0;
458     int sr=0;    //search range got from mv_pred(). It uses step_param levels. (0-7)
459
460     int_mv nearest_mv[4];
461     int_mv near_mv[4];
462     int_mv frame_best_ref_mv[4];
463     int MDCounts[4][4];
464     unsigned char *y_buffer[4];
465     unsigned char *u_buffer[4];
466     unsigned char *v_buffer[4];
467
468     int skip_mode[4] = {0, 0, 0, 0};
469
470     int have_subp_search = cpi->sf.half_pixel_search;  /* In real-time mode, when Speed >= 15, no sub-pixel search. */
471
472     vpx_memset(mode_mv, 0, sizeof(mode_mv));
473     vpx_memset(nearest_mv, 0, sizeof(nearest_mv));
474     vpx_memset(near_mv, 0, sizeof(near_mv));
475     vpx_memset(&best_mbmode, 0, sizeof(best_mbmode));
476
477
478     // set up all the refframe dependent pointers.
479     if (cpi->ref_frame_flags & VP8_LAST_FLAG)
480     {
481         YV12_BUFFER_CONFIG *lst_yv12 = &cpi->common.yv12_fb[cpi->common.lst_fb_idx];
482
483         vp8_find_near_mvs(&x->e_mbd, x->e_mbd.mode_info_context, &nearest_mv[LAST_FRAME], &near_mv[LAST_FRAME],
484                           &frame_best_ref_mv[LAST_FRAME], MDCounts[LAST_FRAME], LAST_FRAME, cpi->common.ref_frame_sign_bias);
485
486         y_buffer[LAST_FRAME] = lst_yv12->y_buffer + recon_yoffset;
487         u_buffer[LAST_FRAME] = lst_yv12->u_buffer + recon_uvoffset;
488         v_buffer[LAST_FRAME] = lst_yv12->v_buffer + recon_uvoffset;
489     }
490     else
491         skip_mode[LAST_FRAME] = 1;
492
493     if (cpi->ref_frame_flags & VP8_GOLD_FLAG)
494     {
495         YV12_BUFFER_CONFIG *gld_yv12 = &cpi->common.yv12_fb[cpi->common.gld_fb_idx];
496
497         vp8_find_near_mvs(&x->e_mbd, x->e_mbd.mode_info_context, &nearest_mv[GOLDEN_FRAME], &near_mv[GOLDEN_FRAME],
498                           &frame_best_ref_mv[GOLDEN_FRAME], MDCounts[GOLDEN_FRAME], GOLDEN_FRAME, cpi->common.ref_frame_sign_bias);
499
500         y_buffer[GOLDEN_FRAME] = gld_yv12->y_buffer + recon_yoffset;
501         u_buffer[GOLDEN_FRAME] = gld_yv12->u_buffer + recon_uvoffset;
502         v_buffer[GOLDEN_FRAME] = gld_yv12->v_buffer + recon_uvoffset;
503     }
504     else
505         skip_mode[GOLDEN_FRAME] = 1;
506
507     if (cpi->ref_frame_flags & VP8_ALT_FLAG && cpi->source_alt_ref_active)
508     {
509         YV12_BUFFER_CONFIG *alt_yv12 = &cpi->common.yv12_fb[cpi->common.alt_fb_idx];
510
511         vp8_find_near_mvs(&x->e_mbd, x->e_mbd.mode_info_context, &nearest_mv[ALTREF_FRAME], &near_mv[ALTREF_FRAME],
512                           &frame_best_ref_mv[ALTREF_FRAME], MDCounts[ALTREF_FRAME], ALTREF_FRAME, cpi->common.ref_frame_sign_bias);
513
514         y_buffer[ALTREF_FRAME] = alt_yv12->y_buffer + recon_yoffset;
515         u_buffer[ALTREF_FRAME] = alt_yv12->u_buffer + recon_uvoffset;
516         v_buffer[ALTREF_FRAME] = alt_yv12->v_buffer + recon_uvoffset;
517     }
518     else
519         skip_mode[ALTREF_FRAME] = 1;
520
521     cpi->mbs_tested_so_far++;          // Count of the number of MBs tested so far this frame
522
523     *returnintra = INT_MAX;
524     x->skip = 0;
525
526     ref_frame_cost[INTRA_FRAME]   = vp8_cost_zero(cpi->prob_intra_coded);
527
528     // Special case treatment when GF and ARF are not sensible options for reference
529     if (cpi->ref_frame_flags == VP8_LAST_FLAG)
530     {
531         ref_frame_cost[LAST_FRAME]    = vp8_cost_one(cpi->prob_intra_coded)
532                                         + vp8_cost_zero(255);
533         ref_frame_cost[GOLDEN_FRAME]  = vp8_cost_one(cpi->prob_intra_coded)
534                                         + vp8_cost_one(255)
535                                         + vp8_cost_zero(128);
536         ref_frame_cost[ALTREF_FRAME]  = vp8_cost_one(cpi->prob_intra_coded)
537                                         + vp8_cost_one(255)
538                                         + vp8_cost_one(128);
539     }
540     else
541     {
542         ref_frame_cost[LAST_FRAME]    = vp8_cost_one(cpi->prob_intra_coded)
543                                         + vp8_cost_zero(cpi->prob_last_coded);
544         ref_frame_cost[GOLDEN_FRAME]  = vp8_cost_one(cpi->prob_intra_coded)
545                                         + vp8_cost_one(cpi->prob_last_coded)
546                                         + vp8_cost_zero(cpi->prob_gf_coded);
547         ref_frame_cost[ALTREF_FRAME]  = vp8_cost_one(cpi->prob_intra_coded)
548                                         + vp8_cost_one(cpi->prob_last_coded)
549                                         + vp8_cost_one(cpi->prob_gf_coded);
550     }
551
552     x->e_mbd.mode_info_context->mbmi.ref_frame = INTRA_FRAME;
553
554     // if we encode a new mv this is important
555     // find the best new motion vector
556     for (mode_index = 0; mode_index < MAX_MODES; mode_index++)
557     {
558         int frame_cost;
559         int this_rd = INT_MAX;
560
561         if (best_rd <= cpi->rd_threshes[mode_index])
562             continue;
563
564         x->e_mbd.mode_info_context->mbmi.ref_frame = vp8_ref_frame_order[mode_index];
565
566         if (skip_mode[x->e_mbd.mode_info_context->mbmi.ref_frame])
567             continue;
568
569         // Check to see if the testing frequency for this mode is at its max
570         // If so then prevent it from being tested and increase the threshold for its testing
571         if (cpi->mode_test_hit_counts[mode_index] && (cpi->mode_check_freq[mode_index] > 1))
572         {
573             //if ( (cpi->mbs_tested_so_far / cpi->mode_test_hit_counts[mode_index]) <= cpi->mode_check_freq[mode_index] )
574             if (cpi->mbs_tested_so_far <= (cpi->mode_check_freq[mode_index] * cpi->mode_test_hit_counts[mode_index]))
575             {
576                 // Increase the threshold for coding this mode to make it less likely to be chosen
577                 cpi->rd_thresh_mult[mode_index] += 4;
578
579                 if (cpi->rd_thresh_mult[mode_index] > MAX_THRESHMULT)
580                     cpi->rd_thresh_mult[mode_index] = MAX_THRESHMULT;
581
582                 cpi->rd_threshes[mode_index] = (cpi->rd_baseline_thresh[mode_index] >> 7) * cpi->rd_thresh_mult[mode_index];
583
584                 continue;
585             }
586         }
587
588         // We have now reached the point where we are going to test the current mode so increment the counter for the number of times it has been tested
589         cpi->mode_test_hit_counts[mode_index] ++;
590
591         rate2 = 0;
592         distortion2 = 0;
593
594         this_mode = vp8_mode_order[mode_index];
595
596         // Experimental debug code.
597         //all_rds[mode_index] = -1;
598
599         x->e_mbd.mode_info_context->mbmi.mode = this_mode;
600         x->e_mbd.mode_info_context->mbmi.uv_mode = DC_PRED;
601
602         // Work out the cost assosciated with selecting the reference frame
603         frame_cost = ref_frame_cost[x->e_mbd.mode_info_context->mbmi.ref_frame];
604         rate2 += frame_cost;
605
606         // everything but intra
607         if (x->e_mbd.mode_info_context->mbmi.ref_frame)
608         {
609             x->e_mbd.pre.y_buffer = y_buffer[x->e_mbd.mode_info_context->mbmi.ref_frame];
610             x->e_mbd.pre.u_buffer = u_buffer[x->e_mbd.mode_info_context->mbmi.ref_frame];
611             x->e_mbd.pre.v_buffer = v_buffer[x->e_mbd.mode_info_context->mbmi.ref_frame];
612             mode_mv[NEARESTMV] = nearest_mv[x->e_mbd.mode_info_context->mbmi.ref_frame];
613             mode_mv[NEARMV] = near_mv[x->e_mbd.mode_info_context->mbmi.ref_frame];
614             best_ref_mv = frame_best_ref_mv[x->e_mbd.mode_info_context->mbmi.ref_frame];
615             memcpy(mdcounts, MDCounts[x->e_mbd.mode_info_context->mbmi.ref_frame], sizeof(mdcounts));
616         }
617
618         // Only consider ZEROMV/ALTREF_FRAME for alt ref frame,
619         // unless ARNR filtering is enabled in which case we want
620         // an unfiltered alternative
621         if (cpi->is_src_frame_alt_ref && (cpi->oxcf.arnr_max_frames == 0))
622         {
623             if (this_mode != ZEROMV || x->e_mbd.mode_info_context->mbmi.ref_frame != ALTREF_FRAME)
624                 continue;
625         }
626
627         if(cpi->sf.improved_mv_pred && x->e_mbd.mode_info_context->mbmi.mode == NEWMV)
628         {
629             if(!saddone)
630             {
631                 vp8_cal_sad(cpi,xd,x, recon_yoffset ,&near_sadidx[0] );
632                 saddone = 1;
633             }
634
635             vp8_mv_pred(cpi, &x->e_mbd, x->e_mbd.mode_info_context, &mvp,
636                         x->e_mbd.mode_info_context->mbmi.ref_frame, cpi->common.ref_frame_sign_bias, &sr, &near_sadidx[0]);
637
638             /* adjust mvp to make sure it is within MV range */
639             vp8_clamp_mv(&mvp,
640                          best_ref_mv.as_mv.row - MAX_FULL_PEL_VAL,
641                          best_ref_mv.as_mv.row + MAX_FULL_PEL_VAL,
642                          best_ref_mv.as_mv.col - MAX_FULL_PEL_VAL,
643                          best_ref_mv.as_mv.col + MAX_FULL_PEL_VAL);
644         }
645
646         switch (this_mode)
647         {
648         case B_PRED:
649             // Pass best so far to vp8_pick_intra4x4mby_modes to use as breakout
650             distortion2 = *returndistortion;
651             vp8_pick_intra4x4mby_modes(IF_RTCD(&cpi->rtcd), x,
652                                          &rate, &distortion2);
653
654             if (distortion2 == INT_MAX)
655             {
656                 this_rd = INT_MAX;
657             }
658             else
659             {
660                 rate2 += rate;
661                 distortion2 = VARIANCE_INVOKE
662                                 (&cpi->rtcd.variance, get16x16prederror)(
663                                     x->src.y_buffer, x->src.y_stride,
664                                     x->e_mbd.predictor, 16, 0x7fffffff);
665                 this_rd = RDCOST(x->rdmult, x->rddiv, rate2, distortion2);
666
667                 if (this_rd < best_intra_rd)
668                 {
669                     best_intra_rd = this_rd;
670                     *returnintra = distortion2;
671                 }
672             }
673
674             break;
675
676         case SPLITMV:
677
678             // Split MV modes currently not supported when RD is nopt enabled.
679             break;
680
681         case DC_PRED:
682         case V_PRED:
683         case H_PRED:
684         case TM_PRED:
685             RECON_INVOKE(&cpi->common.rtcd.recon, build_intra_predictors_mby)
686                 (&x->e_mbd);
687             distortion2 = VARIANCE_INVOKE(&cpi->rtcd.variance, get16x16prederror)(x->src.y_buffer, x->src.y_stride, x->e_mbd.predictor, 16, 0x7fffffff);
688             rate2 += x->mbmode_cost[x->e_mbd.frame_type][x->e_mbd.mode_info_context->mbmi.mode];
689             this_rd = RDCOST(x->rdmult, x->rddiv, rate2, distortion2);
690
691             if (this_rd < best_intra_rd)
692             {
693                 best_intra_rd = this_rd;
694                 *returnintra = distortion2;
695             }
696             break;
697
698         case NEWMV:
699         {
700             int thissme;
701             int step_param;
702             int further_steps;
703             int n = 0;
704             int sadpb = x->sadperbit16;
705
706             int col_min;
707             int col_max;
708             int row_min;
709             int row_max;
710
711             int tmp_col_min = x->mv_col_min;
712             int tmp_col_max = x->mv_col_max;
713             int tmp_row_min = x->mv_row_min;
714             int tmp_row_max = x->mv_row_max;
715
716             int speed_adjust = (cpi->Speed > 5) ? ((cpi->Speed >= 8)? 3 : 2) : 1;
717
718             // Further step/diamond searches as necessary
719             step_param = cpi->sf.first_step + speed_adjust;
720
721             if(cpi->sf.improved_mv_pred)
722             {
723                 sr += speed_adjust;
724                 //adjust search range according to sr from mv prediction
725                 if(sr > step_param)
726                     step_param = sr;
727
728                 col_min = (best_ref_mv.as_mv.col - MAX_FULL_PEL_VAL) >>3;
729                 col_max = (best_ref_mv.as_mv.col + MAX_FULL_PEL_VAL) >>3;
730                 row_min = (best_ref_mv.as_mv.row - MAX_FULL_PEL_VAL) >>3;
731                 row_max = (best_ref_mv.as_mv.row + MAX_FULL_PEL_VAL) >>3;
732
733                 // Get intersection of UMV window and valid MV window to reduce # of checks in diamond search.
734                 if (x->mv_col_min < col_min )
735                     x->mv_col_min = col_min;
736                 if (x->mv_col_max > col_max )
737                     x->mv_col_max = col_max;
738                 if (x->mv_row_min < row_min )
739                     x->mv_row_min = row_min;
740                 if (x->mv_row_max > row_max )
741                     x->mv_row_max = row_max;
742             }else
743             {
744                 mvp.as_int = best_ref_mv.as_int;
745             }
746
747             further_steps = (cpi->Speed >= 8)? 0: (cpi->sf.max_step_search_steps - 1 - step_param);
748
749             if (cpi->sf.search_method == HEX)
750             {
751                 bestsme = vp8_hex_search(x, b, d, &mvp, &d->bmi.mv, step_param, sadpb/*x->errorperbit*/, &num00, &cpi->fn_ptr[BLOCK_16X16], x->mvsadcost, x->mvcost, &best_ref_mv);
752                 mode_mv[NEWMV].as_int = d->bmi.mv.as_int;
753             }
754             else
755             {
756                 bestsme = cpi->diamond_search_sad(x, b, d, &mvp, &d->bmi.mv, step_param, sadpb / 2/*x->errorperbit*/, &num00, &cpi->fn_ptr[BLOCK_16X16], x->mvcost, &best_ref_mv); //sadpb < 9
757                 mode_mv[NEWMV].as_int = d->bmi.mv.as_int;
758
759                 // Further step/diamond searches as necessary
760                 n = 0;
761                 //further_steps = (cpi->sf.max_step_search_steps - 1) - step_param;
762
763                 n = num00;
764                 num00 = 0;
765
766                 while (n < further_steps)
767                 {
768                     n++;
769
770                     if (num00)
771                         num00--;
772                     else
773                     {
774                         thissme =
775                         cpi->diamond_search_sad(x, b, d, &mvp,
776                                                 &d->bmi.mv,
777                                                 step_param + n,
778                                                 sadpb / 4, &num00,
779                                                 &cpi->fn_ptr[BLOCK_16X16],
780                                                 x->mvcost, &best_ref_mv);
781                         if (thissme < bestsme)
782                         {
783                             bestsme = thissme;
784                             mode_mv[NEWMV].as_int = d->bmi.mv.as_int;
785                         }
786                         else
787                         {
788                             d->bmi.mv.as_int = mode_mv[NEWMV].as_int;
789                         }
790                     }
791                 }
792             }
793
794             if(cpi->sf.improved_mv_pred)
795             {
796                 x->mv_col_min = tmp_col_min;
797                 x->mv_col_max = tmp_col_max;
798                 x->mv_row_min = tmp_row_min;
799                 x->mv_row_max = tmp_row_max;
800             }
801
802             if (bestsme < INT_MAX)
803                 cpi->find_fractional_mv_step(x, b, d, &d->bmi.mv, &best_ref_mv, x->errorperbit, &cpi->fn_ptr[BLOCK_16X16], cpi->mb.mvcost, &distortion2, &sse);
804
805             mode_mv[NEWMV].as_int = d->bmi.mv.as_int;
806
807             // mv cost;
808             rate2 += vp8_mv_bit_cost(&mode_mv[NEWMV], &best_ref_mv, cpi->mb.mvcost, 128);
809         }
810
811         case NEARESTMV:
812         case NEARMV:
813
814             if (mode_mv[this_mode].as_int == 0)
815                 continue;
816
817         case ZEROMV:
818
819             // Trap vectors that reach beyond the UMV borders
820             // Note that ALL New MV, Nearest MV Near MV and Zero MV code drops through to this point
821             // because of the lack of break statements in the previous two cases.
822             if (((mode_mv[this_mode].as_mv.row >> 3) < x->mv_row_min) || ((mode_mv[this_mode].as_mv.row >> 3) > x->mv_row_max) ||
823                 ((mode_mv[this_mode].as_mv.col >> 3) < x->mv_col_min) || ((mode_mv[this_mode].as_mv.col >> 3) > x->mv_col_max))
824                 continue;
825
826             rate2 += vp8_cost_mv_ref(this_mode, mdcounts);
827             x->e_mbd.mode_info_context->mbmi.mode = this_mode;
828             x->e_mbd.mode_info_context->mbmi.mv.as_mv = mode_mv[this_mode].as_mv;
829             x->e_mbd.block[0].bmi.mode = this_mode;
830             x->e_mbd.block[0].bmi.mv.as_int = x->e_mbd.mode_info_context->mbmi.mv.as_int;
831
832             if((this_mode != NEWMV) || !(have_subp_search))
833                 distortion2 = get_inter_mbpred_error(x, &cpi->fn_ptr[BLOCK_16X16], &sse);
834
835             this_rd = RDCOST(x->rdmult, x->rddiv, rate2, distortion2);
836
837             if (cpi->active_map_enabled && x->active_ptr[0] == 0)
838             {
839                 x->skip = 1;
840             }
841             else if (sse < x->encode_breakout)
842             {
843                 // Check u and v to make sure skip is ok
844                 int sse2 = 0;
845
846                 sse2 = VP8_UVSSE(x, IF_RTCD(&cpi->rtcd.variance));
847
848                 if (sse2 * 2 < x->encode_breakout)
849                     x->skip = 1;
850                 else
851                     x->skip = 0;
852             }
853
854             break;
855         default:
856             break;
857         }
858
859         // Experimental debug code.
860         //all_rds[mode_index] = this_rd;
861
862         if (this_rd < best_rd || x->skip)
863         {
864             // Note index of best mode
865             best_mode_index = mode_index;
866
867             *returnrate = rate2;
868             *returndistortion = distortion2;
869             best_rd = this_rd;
870             vpx_memcpy(&best_mbmode, &x->e_mbd.mode_info_context->mbmi, sizeof(MB_MODE_INFO));
871             vpx_memcpy(&best_partition, x->partition_info, sizeof(PARTITION_INFO));
872
873             if (this_mode == B_PRED || this_mode == SPLITMV)
874                 for (i = 0; i < 16; i++)
875                 {
876                     vpx_memcpy(&best_bmodes[i], &x->e_mbd.block[i].bmi, sizeof(B_MODE_INFO));
877                 }
878             else
879             {
880                 best_bmodes[0].mv = x->e_mbd.block[0].bmi.mv;
881             }
882
883             // Testing this mode gave rise to an improvement in best error score. Lower threshold a bit for next time
884             cpi->rd_thresh_mult[mode_index] = (cpi->rd_thresh_mult[mode_index] >= (MIN_THRESHMULT + 2)) ? cpi->rd_thresh_mult[mode_index] - 2 : MIN_THRESHMULT;
885             cpi->rd_threshes[mode_index] = (cpi->rd_baseline_thresh[mode_index] >> 7) * cpi->rd_thresh_mult[mode_index];
886         }
887
888         // If the mode did not help improve the best error case then raise the threshold for testing that mode next time around.
889         else
890         {
891             cpi->rd_thresh_mult[mode_index] += 4;
892
893             if (cpi->rd_thresh_mult[mode_index] > MAX_THRESHMULT)
894                 cpi->rd_thresh_mult[mode_index] = MAX_THRESHMULT;
895
896             cpi->rd_threshes[mode_index] = (cpi->rd_baseline_thresh[mode_index] >> 7) * cpi->rd_thresh_mult[mode_index];
897         }
898
899         if (x->skip)
900             break;
901     }
902
903     // Reduce the activation RD thresholds for the best choice mode
904     if ((cpi->rd_baseline_thresh[best_mode_index] > 0) && (cpi->rd_baseline_thresh[best_mode_index] < (INT_MAX >> 2)))
905     {
906         int best_adjustment = (cpi->rd_thresh_mult[best_mode_index] >> 3);
907
908         cpi->rd_thresh_mult[best_mode_index] = (cpi->rd_thresh_mult[best_mode_index] >= (MIN_THRESHMULT + best_adjustment)) ? cpi->rd_thresh_mult[best_mode_index] - best_adjustment : MIN_THRESHMULT;
909         cpi->rd_threshes[best_mode_index] = (cpi->rd_baseline_thresh[best_mode_index] >> 7) * cpi->rd_thresh_mult[best_mode_index];
910     }
911
912     // Keep a record of best mode index for use in next loop
913     cpi->last_best_mode_index = best_mode_index;
914
915     if (best_mbmode.mode <= B_PRED)
916     {
917         x->e_mbd.mode_info_context->mbmi.ref_frame = INTRA_FRAME;
918         vp8_pick_intra_mbuv_mode(x);
919         best_mbmode.uv_mode = x->e_mbd.mode_info_context->mbmi.uv_mode;
920     }
921
922
923     {
924         int this_rdbin = (*returndistortion >> 7);
925
926         if (this_rdbin >= 1024)
927         {
928             this_rdbin = 1023;
929         }
930
931         cpi->error_bins[this_rdbin] ++;
932     }
933
934
935     if (cpi->is_src_frame_alt_ref && (best_mbmode.mode != ZEROMV || best_mbmode.ref_frame != ALTREF_FRAME))
936     {
937         best_mbmode.mode = ZEROMV;
938         best_mbmode.ref_frame = ALTREF_FRAME;
939         best_mbmode.mv.as_int = 0;
940         best_mbmode.uv_mode = 0;
941         best_mbmode.mb_skip_coeff = (cpi->common.mb_no_coeff_skip) ? 1 : 0;
942         best_mbmode.partitioning = 0;
943
944         vpx_memcpy(&x->e_mbd.mode_info_context->mbmi, &best_mbmode, sizeof(MB_MODE_INFO));
945         vpx_memcpy(x->partition_info, &best_partition, sizeof(PARTITION_INFO));
946
947         for (i = 0; i < 16; i++)
948         {
949             vpx_memset(&x->e_mbd.block[i].bmi, 0, sizeof(B_MODE_INFO));
950         }
951
952         x->e_mbd.mode_info_context->mbmi.mv.as_int = 0;
953         return;
954     }
955
956
957     // macroblock modes
958     vpx_memcpy(&x->e_mbd.mode_info_context->mbmi, &best_mbmode, sizeof(MB_MODE_INFO));
959     vpx_memcpy(x->partition_info, &best_partition, sizeof(PARTITION_INFO));
960
961     if (x->e_mbd.mode_info_context->mbmi.mode == B_PRED || x->e_mbd.mode_info_context->mbmi.mode == SPLITMV)
962         for (i = 0; i < 16; i++)
963         {
964             vpx_memcpy(&x->e_mbd.block[i].bmi, &best_bmodes[i], sizeof(B_MODE_INFO));
965
966         }
967     else
968     {
969         vp8_set_mbmode_and_mvs(x, x->e_mbd.mode_info_context->mbmi.mode, &best_bmodes[0].mv);
970     }
971
972     x->e_mbd.mode_info_context->mbmi.mv.as_mv = x->e_mbd.block[15].bmi.mv.as_mv;
973 }