Home | History | Annotate | Download | only in dsp

Lines Matching refs:left

191 static uint32_t Predictor5_MIPSdspR2(uint32_t left, const uint32_t* const top) {
192 return Average3(left, top[0], top[1]);
195 static uint32_t Predictor6_MIPSdspR2(uint32_t left, const uint32_t* const top) {
196 return Average2(left, top[-1]);
199 static uint32_t Predictor7_MIPSdspR2(uint32_t left, const uint32_t* const top) {
200 return Average2(left, top[0]);
203 static uint32_t Predictor8_MIPSdspR2(uint32_t left, const uint32_t* const top) {
204 (void)left;
208 static uint32_t Predictor9_MIPSdspR2(uint32_t left, const uint32_t* const top) {
209 (void)left;
213 static uint32_t Predictor10_MIPSdspR2(uint32_t left,
215 return Average4(left, top[-1], top[0], top[1]);
218 static uint32_t Predictor11_MIPSdspR2(uint32_t left,
220 return Select(top[0], left, top[-1]);
223 static uint32_t Predictor12_MIPSdspR2(uint32_t left,
225 return ClampedAddSubtractFull(left, top[0], top[-1]);
228 static uint32_t Predictor13_MIPSdspR2(uint32_t left,
230 return ClampedAddSubtractHalf(left, top[0], top[-1]);
359 // Fall-back to C-version for left-overs.