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

/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.c329 pDst[0] = clamp16(pDst[0] + pSrc[0]);
330 pDst[1] = clamp16(pDst[1] + pSrc[1]);
827 pDst[0] = clamp16(pDst[0] + ((pSrc[0] + pSrc[2]) >> 1));
829 pDst[1] = clamp16(pDst[1] + ((pSrc[1] + pSrc[3]) >> 1));
837 pDst[0] = clamp16((pSrc[0] + pSrc[2]) >> 1);
839 pDst[1] = clamp16((pSrc[1] + pSrc[3]) >> 1);
885 pDst[0] = clamp16(pDst[0] + (lt >> 13));
886 pDst[1] = clamp16(pDst[1] + (rt >> 13));
901 pDst[0] = clamp16(lt >> 13); // differs from when accumulate is true above
902 pDst[1] = clamp16(r
[all...]
/frameworks/av/services/audioflinger/
H A DAudioMixerOps.h118 return clamp16(MixMul<int32_t, int16_t, int16_t>(value, volume) >> 12);
123 return clamp16(MixMul<int32_t, int32_t, int16_t>(value, volume) >> 12);
128 return clamp16(MixMul<int32_t, int16_t, int32_t>(value, volume) >> 12);
133 return clamp16(MixMul<int32_t, int32_t, int32_t>(value, volume) >> 12);
H A DAudioMixer.cpp1647 l = clamp16(l);
1648 r = clamp16(r);
H A DEffects.cpp304 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp388 static inline int16_t clamp16(int32_t sample) function in namespace:android::__anon243
484 OutFrames16[i] = clamp16(pContext->OutFrames32[i]>>8);
488 OutFrames16[i] = clamp16((pContext->OutFrames32[i]>>8) + (LVM_INT32)pIn[i]);
502 clamp16((LVM_INT32)((vl >> 16) * OutFrames16[2*i]) >> 12);
504 clamp16((LVM_INT32)((vr >> 16) * OutFrames16[2*i+1]) >> 12);
517 clamp16((LVM_INT32)(pContext->leftVolume * OutFrames16[2*i]) >> 12);
519 clamp16((LVM_INT32)(pContext->rightVolume * OutFrames16[2*i+1]) >> 12);
537 pOut[i] = clamp16((int32_t)pOut[i] + (int32_t)OutFrames16[i]);
/frameworks/av/media/libeffects/loudness/
H A DEffectLoudnessEnhancer.cpp79 static inline int16_t clamp16(int32_t sample) function
298 outBuffer->s16[i] = clamp16(outBuffer->s16[i] + inBuffer->s16[i]);
/frameworks/av/media/libeffects/visualizer/
H A DEffectVisualizer.cpp300 static inline int16_t clamp16(int32_t sample) function
401 outBuffer->s16[i] = clamp16(outBuffer->s16[i] + inBuffer->s16[i]);
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.cpp56 static inline int16_t clamp16(int32_t sample) function
767 pOut[i] = clamp16((LVM_INT32)pOut[i] + (LVM_INT32)pOutTmp[i]);
2991 clamp16((LVM_INT32)outBuffer->s16[i] + (LVM_INT32)inBuffer->s16[i]);

Completed in 3486 milliseconds