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

  /system/media/audio_utils/
primitives.c 27 l = clamp16(nl);
28 r = clamp16(nr);
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.c 328 pDst[0] = clamp16(pDst[0] + pSrc[0]);
329 pDst[1] = clamp16(pDst[1] + pSrc[1]);
825 pDst[0] = clamp16(pDst[0] + ((pSrc[0] + pSrc[2]) >> 1));
827 pDst[1] = clamp16(pDst[1] + ((pSrc[1] + pSrc[3]) >> 1));
835 pDst[0] = clamp16((pSrc[0] + pSrc[2]) >> 1);
837 pDst[1] = clamp16((pSrc[1] + pSrc[3]) >> 1);
880 pDst[0] = clamp16(pDst[0] + (lt >> 13));
881 pDst[1] = clamp16(pDst[1] + (rt >> 13));
895 pDst[0] = clamp16(lt >> 13); // differs from when accumulate is true above
896 pDst[1] = clamp16(rt >> 13); // differs from when accumulate is true abov
    [all...]
  /system/media/audio_utils/include/audio_utils/
primitives.h 50 static inline int16_t clamp16(int32_t sample) function
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 410 static inline int16_t clamp16(int32_t sample) function in namespace:android::__anon16285
506 OutFrames16[i] = clamp16(pContext->OutFrames32[i]>>8);
510 OutFrames16[i] = clamp16((pContext->OutFrames32[i]>>8) + (LVM_INT32)pIn[i]);
524 clamp16((LVM_INT32)((vl >> 16) * OutFrames16[2*i]) >> 12);
526 clamp16((LVM_INT32)((vr >> 16) * OutFrames16[2*i+1]) >> 12);
539 clamp16((LVM_INT32)(pContext->leftVolume * OutFrames16[2*i]) >> 12);
541 clamp16((LVM_INT32)(pContext->rightVolume * OutFrames16[2*i+1]) >> 12);
559 pOut[i] = clamp16((int32_t)pOut[i] + (int32_t)OutFrames16[i]);
    [all...]
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 267 static inline int16_t clamp16(int32_t sample) function
344 outBuffer->s16[i] = clamp16(outBuffer->s16[i] + inBuffer->s16[i]);
  /frameworks/av/services/audioflinger/
AudioMixer.cpp     [all...]
AudioFlinger.cpp     [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp 53 static inline int16_t clamp16(int32_t sample) function
    [all...]

Completed in 838 milliseconds