Searched refs:thismse (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 205 …ER(v,r,c) IFMVCV(r,c,{thismse = DIST(r,c); if((v = (MVC(r,c)+thismse)) < besterr) { besterr = v; b… 225 int thismse; in vp8_find_best_sub_pixel_step_iteratively() local 379 int thismse; in vp8_find_best_sub_pixel_step() local 411 thismse = vfp->svf_halfpix_h(y - 1, y_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step() 412 left = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 418 *distortion = thismse; in vp8_find_best_sub_pixel_step() 423 thismse = vfp->svf_halfpix_h(y, y_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step() 424 right = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 430 *distortion = thismse; in vp8_find_best_sub_pixel_step() 437 thismse = vfp->svf_halfpix_v(y - y_stride, y_stride, z, b->src_stride, &sse); in vp8_find_best_sub_pixel_step() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 179 thismse = vfp->svf(pre(y, y_stride, r, c), y_stride, sp(c), sp(r), z, \ 182 thismse = vfp->svaf(pre(y, y_stride, r, c), y_stride, sp(c), sp(r), \ 184 if ((v = MVC(r, c) + thismse) < besterr) { \ 188 *distortion = thismse; \ 288 int thismse; \ 661 int thismse; in vp9_find_best_sub_pixel_tree() local 708 thismse = vfp->svf(pre_address, y_stride, sp(tc), sp(tr), in vp9_find_best_sub_pixel_tree() 711 thismse = vfp->svaf(pre_address, y_stride, sp(tc), sp(tr), in vp9_find_best_sub_pixel_tree() 713 cost_array[idx] = thismse + in vp9_find_best_sub_pixel_tree() 719 *distortion = thismse; in vp9_find_best_sub_pixel_tree() [all …]
|