Home
last modified time | relevance | path

Searched refs:motion_error (Results 1 – 3 of 3) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dfirstpass.c542 int tmp_err, motion_error, raw_motion_error; in av1_first_pass() local
549 motion_error = highbd_get_prediction_error( in av1_first_pass()
552 motion_error = get_prediction_error(bsize, &x->plane[0].src, in av1_first_pass()
575 first_pass_motion_search(cpi, x, &best_ref_mv, &mv, &motion_error); in av1_first_pass()
583 if (tmp_err < motion_error) { in av1_first_pass()
584 motion_error = tmp_err; in av1_first_pass()
606 if (gf_motion_error < motion_error && gf_motion_error < this_error) in av1_first_pass()
623 sr_coded_error += motion_error; in av1_first_pass()
626 sr_coded_error += motion_error; in av1_first_pass()
633 if (motion_error <= this_error) { in av1_first_pass()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c1039 int tmp_err, motion_error, this_motion_error, raw_motion_error; in vp9_first_pass_encode_tile_mb_row() local
1048 motion_error = highbd_get_prediction_error( in vp9_first_pass_encode_tile_mb_row()
1053 motion_error = in vp9_first_pass_encode_tile_mb_row()
1055 this_motion_error = motion_error; in vp9_first_pass_encode_tile_mb_row()
1058 motion_error = in vp9_first_pass_encode_tile_mb_row()
1060 this_motion_error = motion_error; in vp9_first_pass_encode_tile_mb_row()
1085 first_pass_motion_search(cpi, x, best_ref_mv, &mv, &motion_error); in vp9_first_pass_encode_tile_mb_row()
1102 if (tmp_err < motion_error) { in vp9_first_pass_encode_tile_mb_row()
1103 motion_error = tmp_err; in vp9_first_pass_encode_tile_mb_row()
1131 if (gf_motion_error < motion_error && gf_motion_error < this_error) in vp9_first_pass_encode_tile_mb_row()
[all …]
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c602 int motion_error = INT_MAX; in vp8_first_pass() local
607 &raw_motion_error, lst_yv12, &motion_error, in vp8_first_pass()
620 lst_yv12, &motion_error, recon_yoffset); in vp8_first_pass()
630 if (tmp_err < motion_error) { in vp8_first_pass()
631 motion_error = tmp_err; in vp8_first_pass()
644 if ((gf_motion_error < motion_error) && in vp8_first_pass()
659 if (motion_error <= this_error) { in vp8_first_pass()
665 if ((((this_error - intrapenalty) * 9) <= (motion_error * 10)) && in vp8_first_pass()
672 this_error = motion_error; in vp8_first_pass()