Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c879 int this_error; in vp9_first_pass_encode_tile_mb_row() local
935 this_error = vpx_get_mb_ss(x->plane[0].src_diff); in vp9_first_pass_encode_tile_mb_row()
936 this_intra_error = this_error; in vp9_first_pass_encode_tile_mb_row()
943 if (this_error < get_ul_intra_threshold(cm)) { in vp9_first_pass_encode_tile_mb_row()
953 if (this_error < get_smooth_intra_threshold(cm)) { in vp9_first_pass_encode_tile_mb_row()
970 case VPX_BITS_10: this_error >>= 4; break; in vp9_first_pass_encode_tile_mb_row()
973 this_error >>= 8; in vp9_first_pass_encode_tile_mb_row()
980 log_intra = log(this_error + 1.0); in vp9_first_pass_encode_tile_mb_row()
1021 this_error += intrapenalty; in vp9_first_pass_encode_tile_mb_row()
1024 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.cc138 const double this_error = abs(expected[ni] - actual[ni]); in RunRoundtripCheck() local
139 actual_max_error = AOMMAX(actual_max_error, this_error); in RunRoundtripCheck()
Dav1_fwd_txfm2d_test.cc93 const double this_error = in RunFwdAccuracyCheck() local
95 actual_max_error = AOMMAX(actual_max_error, this_error); in RunFwdAccuracyCheck()
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c557 int this_error; in vp8_first_pass() local
570 this_error = vp8_encode_intra(cpi, x, use_dc_pred); in vp8_first_pass()
581 this_error += intrapenalty; in vp8_first_pass()
584 intra_error += (int64_t)this_error; in vp8_first_pass()
640 (gf_motion_error < this_error)) { in vp8_first_pass()
654 if (motion_error <= this_error) { in vp8_first_pass()
660 if ((((this_error - intrapenalty) * 9) <= (motion_error * 10)) && in vp8_first_pass()
661 (this_error < (2 * intrapenalty))) { in vp8_first_pass()
667 this_error = motion_error; in vp8_first_pass()
721 coded_error += (int64_t)this_error; in vp8_first_pass()
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbtest.py507 this_output, this_error = process.communicate()