Home | History | Annotate | Download | only in encoder

Lines Matching refs:thissme

1114                 int thissme;
1175 thissme = cpi->diamond_search_sad(x, c, e, bsi->mvp,
1179 if (thissme < bestsme)
1181 bestsme = thissme;
1194 thissme = cpi->full_search_sad(x, c, e, bsi->mvp,
1197 if (thissme < bestsme)
1199 bestsme = thissme;
2054 int thissme;
2124 thissme = cpi->diamond_search_sad(x, b, d, &mvp, &d->bmi.mv.as_mv, step_param + n, sadpb / 4/*x->errorperbit*/, &num00, &cpi->fn_ptr[BLOCK_16X16], x->mvsadcost, x->mvcost, &best_ref_mv); //sadpb = 9
2126 if (thissme < bestsme)
2128 bestsme = thissme;
2146 int thissme;
2170 thissme = cpi->full_search_sad(x, b, d, &full_mvp, sadpb, search_range, &cpi->fn_ptr[BLOCK_16X16], x->mvcost, x->mvsadcost,&best_ref_mv);
2174 // full_flag_thresh = 10 + (thissme >> 7);
2175 if ((thissme + full_flag_thresh) < bestsme)
2178 bestsme = thissme;
2180 else if (thissme < bestsme)
2181 bestsme = thissme;