Searched defs:smp (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libeffects/visualizer/
H A DEffectVisualizer.cpp299 int32_t smp = inBuffer->s16[i]; local
300 if (smp < 0) smp = -smp - 1; // take care to keep the max negative in range
301 int32_t clz = __builtin_clz(smp);
328 int32_t smp = inBuffer->s16[2 * inIdx] + inBuffer->s16[2 * inIdx + 1]; local
329 smp = smp >> shift;
330 buf[captIdx] = ((uint8_t)smp)^0x80;
/frameworks/av/media/libeffects/testlibs/
H A DEffectReverb.c236 int16_t smp; local
247 smp = *pSrc++;
248 *pDst++ = smp;
249 *pDst++ = smp;
1346 ALOGV("REVERB_PARAM_REFLECTIONS_DELAY, m_nEarlyDelay smps %d max smp delay %d", pReverb->m_nEarlyDelay, maxSamples);
1390 ALOGV("REVERB_PARAM_REVERB_DELAY, m_nLateDelay smps %d max smp delay %d", pReverb->m_nLateDelay, maxSamples);

Completed in 42 milliseconds