Home | History | Annotate | Download | only in lib_src

Lines Matching refs:temp

145         EAS_I32 temp;
146 temp = MaximizerProcess(pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effectData, pEASData->pMixBuffer, pEASData->pMixBuffer, numSamples);
147 temp = (temp * pEASData->masterGain) >> 15;
148 if (temp > 32767)
151 gain = (EAS_U16) temp;
340 EAS_I32 temp;
393 temp = (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS;
394 temp += ((pInputBuffer[src+1] * gainRight) >> NUM_MIXER_GUARD_BITS);
395 pMixBuffer[dest] += temp;
443 temp = (pInputBuffer[src] * (gainLeft >> 15)) >> NUM_MIXER_GUARD_BITS;
444 temp += ((pInputBuffer[src+1] * (gainRight >> 15)) >> NUM_MIXER_GUARD_BITS);
445 pMixBuffer[dest] += temp;