Searched refs:gf_motion_error (Results 1 – 3 of 3) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | firstpass.c | 624 int gf_motion_error = motion_error; in firstpass_inter_prediction() local 629 gf_motion_error = in firstpass_inter_prediction() 632 first_pass_motion_search(cpi, x, &kZeroMv, &tmp_mv, &gf_motion_error); in firstpass_inter_prediction() 634 if (gf_motion_error < motion_error && gf_motion_error < this_intra_error) { in firstpass_inter_prediction() 642 stats->sr_coded_error += AOMMIN(gf_motion_error, this_intra_error); in firstpass_inter_prediction() 659 if (alt_motion_error < motion_error && alt_motion_error < gf_motion_error && in firstpass_inter_prediction()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_firstpass.c | 1115 int gf_motion_error; in vp9_first_pass_encode_tile_mb_row() local 1120 gf_motion_error = highbd_get_prediction_error( in vp9_first_pass_encode_tile_mb_row() 1123 gf_motion_error = get_prediction_error(bsize, &x->plane[0].src, in vp9_first_pass_encode_tile_mb_row() 1127 gf_motion_error = get_prediction_error(bsize, &x->plane[0].src, in vp9_first_pass_encode_tile_mb_row() 1131 first_pass_motion_search(cpi, x, &zero_mv, &tmp_mv, &gf_motion_error); in vp9_first_pass_encode_tile_mb_row() 1133 if (gf_motion_error < motion_error && gf_motion_error < this_error) in vp9_first_pass_encode_tile_mb_row() 1145 if (gf_motion_error < this_error) in vp9_first_pass_encode_tile_mb_row() 1146 fp_acc_data->sr_coded_error += gf_motion_error; in vp9_first_pass_encode_tile_mb_row()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | firstpass.c | 558 int gf_motion_error = INT_MAX; in vp8_first_pass() local 637 &gf_motion_error, recon_yoffset); in vp8_first_pass() 639 if ((gf_motion_error < motion_error) && in vp8_first_pass() 640 (gf_motion_error < this_error)) { in vp8_first_pass()
|