Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c650 int this_error; in vp9_first_pass() local
679 this_error = vpx_get_mb_ss(x->plane[0].src_diff); in vp9_first_pass()
686 if (this_error < UL_INTRA_THRESH) { in vp9_first_pass()
698 this_error >>= 4; in vp9_first_pass()
701 this_error >>= 8; in vp9_first_pass()
712 log_intra = log(this_error + 1.0); in vp9_first_pass()
738 this_error += intrapenalty; in vp9_first_pass()
741 intra_error += (int64_t)this_error; in vp9_first_pass()
839 if (gf_motion_error < motion_error && gf_motion_error < this_error) in vp9_first_pass()
851 if (gf_motion_error < this_error) in vp9_first_pass()
[all …]
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c601 int this_error; in vp8_first_pass() local
614 this_error = vp8_encode_intra(cpi, x, use_dc_pred); in vp8_first_pass()
625 this_error += intrapenalty; in vp8_first_pass()
628 intra_error += (int64_t)this_error; in vp8_first_pass()
686 if ((gf_motion_error < motion_error) && (gf_motion_error < this_error)) in vp8_first_pass()
701 if (motion_error <= this_error) in vp8_first_pass()
708 if( (((this_error-intrapenalty) * 9) <= in vp8_first_pass()
710 (this_error < (2*intrapenalty)) ) in vp8_first_pass()
717 this_error = motion_error; in vp8_first_pass()
775 coded_error += (int64_t)this_error; in vp8_first_pass()