Home
last modified time | relevance | path

Searched refs:this_error (Results 1 – 5 of 5) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dfirstpass.c446 int this_error; in av1_first_pass() local
476 this_error = aom_get_mb_ss(x->plane[0].src_diff); in av1_first_pass()
478 if (this_error < UL_INTRA_THRESH) { in av1_first_pass()
487 case AOM_BITS_10: this_error >>= 4; break; in av1_first_pass()
488 case AOM_BITS_12: this_error >>= 8; break; in av1_first_pass()
498 log_intra = log(this_error + 1.0); in av1_first_pass()
520 this_error += intrapenalty; in av1_first_pass()
523 intra_error += (int64_t)this_error; in av1_first_pass()
606 if (gf_motion_error < motion_error && gf_motion_error < this_error) in av1_first_pass()
618 if (gf_motion_error < this_error) in av1_first_pass()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c877 int this_error; in vp9_first_pass_encode_tile_mb_row() local
933 this_error = vpx_get_mb_ss(x->plane[0].src_diff); in vp9_first_pass_encode_tile_mb_row()
934 this_intra_error = this_error; in vp9_first_pass_encode_tile_mb_row()
941 if (this_error < get_ul_intra_threshold(cm)) { in vp9_first_pass_encode_tile_mb_row()
951 if (this_error < get_smooth_intra_threshold(cm)) { in vp9_first_pass_encode_tile_mb_row()
968 case VPX_BITS_10: this_error >>= 4; break; in vp9_first_pass_encode_tile_mb_row()
971 this_error >>= 8; in vp9_first_pass_encode_tile_mb_row()
978 log_intra = log(this_error + 1.0); in vp9_first_pass_encode_tile_mb_row()
1019 this_error += intrapenalty; in vp9_first_pass_encode_tile_mb_row()
1022 fp_acc_data->intra_error += (int64_t)this_error; in vp9_first_pass_encode_tile_mb_row()
[all …]
/external/libaom/libaom/test/
Dav1_inv_txfm2d_test.cc115 const double this_error = abs(expected[ni] - actual[ni]); in RunRoundtripCheck() local
116 actual_max_error = AOMMAX(actual_max_error, this_error); in RunRoundtripCheck()
Dav1_fwd_txfm2d_test.cc92 const double this_error = in RunFwdAccuracyCheck() local
94 actual_max_error = AOMMAX(actual_max_error, this_error); in RunFwdAccuracyCheck()
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c561 int this_error; in vp8_first_pass() local
574 this_error = vp8_encode_intra(cpi, x, use_dc_pred); in vp8_first_pass()
585 this_error += intrapenalty; in vp8_first_pass()
588 intra_error += (int64_t)this_error; in vp8_first_pass()
645 (gf_motion_error < this_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()
666 (this_error < (2 * intrapenalty))) { in vp8_first_pass()
672 this_error = motion_error; in vp8_first_pass()
726 coded_error += (int64_t)this_error; in vp8_first_pass()