Searched refs:prob1 (Results 1 - 1 of 1) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_prob.h67 /* This function assumes prob1 and prob2 are already within [1,255] range. */
68 static INLINE vp9_prob weighted_prob(int prob1, int prob2, int factor) { argument
69 return ROUND_POWER_OF_TWO(prob1 * (256 - factor) + prob2 * factor, 8);

Completed in 46 milliseconds