Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_firstpass.c581 int this_error; in vp9_first_pass() local
605 this_error = vp9_encode_intra(x, use_dc_pred); in vp9_first_pass()
608 this_error = (int)(this_error * error_weight); in vp9_first_pass()
618 this_error += intrapenalty; in vp9_first_pass()
621 intra_error += (int64_t)this_error; in vp9_first_pass()
679 if (gf_motion_error < motion_error && gf_motion_error < this_error) in vp9_first_pass()
691 if (gf_motion_error < this_error) in vp9_first_pass()
694 sr_coded_error += this_error; in vp9_first_pass()
701 if (motion_error <= this_error) { in vp9_first_pass()
705 if (((this_error - intrapenalty) * 9 <= motion_error * 10) && in vp9_first_pass()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dfirstpass.c600 int this_error; in vp8_first_pass() local
613 this_error = vp8_encode_intra(cpi, x, use_dc_pred); in vp8_first_pass()
624 this_error += intrapenalty; in vp8_first_pass()
627 intra_error += (int64_t)this_error; in vp8_first_pass()
685 if ((gf_motion_error < motion_error) && (gf_motion_error < this_error)) in vp8_first_pass()
700 if (motion_error <= this_error) in vp8_first_pass()
707 if( (((this_error-intrapenalty) * 9) <= in vp8_first_pass()
709 (this_error < (2*intrapenalty)) ) in vp8_first_pass()
716 this_error = motion_error; in vp8_first_pass()
774 coded_error += (int64_t)this_error; in vp8_first_pass()