Searched defs:intrapenalty (Results 1 - 2 of 2) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c493 int intrapenalty = 256; local
576 /* "intrapenalty" below deals with situations where the intra
585 this_error += intrapenalty;
665 if ((((this_error - intrapenalty) * 9) <= (motion_error * 10)) &&
666 (this_error < (2 * intrapenalty))) {
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_firstpass.c835 const int intrapenalty = INTRA_MODE_PENALTY; local
1048 this_error += intrapenalty;
1195 if (((this_error - intrapenalty) * 9 <= motion_error * 10) &&
1196 (this_error < (2 * intrapenalty))) {

Completed in 142 milliseconds