HomeSort by relevance Sort by last modified time
    Searched refs:clamp16 (Results 1 - 10 of 10) sorted by null

  /frameworks/av/media/libeffects/downmix/
EffectDownmix.c 298 pDst[0] = clamp16(pDst[0] + pSrc[0]);
299 pDst[1] = clamp16(pDst[1] + pSrc[1]);
795 pDst[0] = clamp16(pDst[0] + ((pSrc[0] + pSrc[2]) >> 1));
797 pDst[1] = clamp16(pDst[1] + ((pSrc[1] + pSrc[3]) >> 1));
805 pDst[0] = clamp16((pSrc[0] + pSrc[2]) >> 1);
807 pDst[1] = clamp16((pSrc[1] + pSrc[3]) >> 1);
853 pDst[0] = clamp16(pDst[0] + (lt >> 13));
854 pDst[1] = clamp16(pDst[1] + (rt >> 13));
869 pDst[0] = clamp16(lt >> 13); // differs from when accumulate is true above
870 pDst[1] = clamp16(rt >> 13); // differs from when accumulate is true abov
    [all...]
  /system/media/audio_utils/
primitives.c 29 l = clamp16(nl);
30 r = clamp16(nr);
172 *dst++ = clamp16(*src++ >> 8);
  /frameworks/av/services/audioflinger/
AudioMixerOps.h 121 return clamp16(MixMul<int32_t, int16_t, int16_t>(value, volume) >> 12);
126 return clamp16(MixMul<int32_t, int32_t, int16_t>(value, volume) >> 12);
131 return clamp16(MixMul<int32_t, int16_t, int32_t>(value, volume) >> 12);
136 return clamp16(MixMul<int32_t, int32_t, int32_t>(value, volume) >> 12);
AudioMixer.cpp     [all...]
Effects.cpp 304 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 388 static inline int16_t clamp16(int32_t sample) function in namespace:android::__anon37780
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]);
    [all...]
  /frameworks/av/media/libeffects/loudness/
EffectLoudnessEnhancer.cpp 79 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/
EffectVisualizer.cpp 300 static inline int16_t clamp16(int32_t sample) function
401 outBuffer->s16[i] = clamp16(outBuffer->s16[i] + inBuffer->s16[i]);
  /system/media/audio_utils/include/audio_utils/
primitives.h 383 static inline int16_t clamp16(int32_t sample) function
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp 55 static inline int16_t clamp16(int32_t sample) function
763 pOut[i] = clamp16((LVM_INT32)pOut[i] + (LVM_INT32)pOutTmp[i]);
    [all...]

Completed in 273 milliseconds