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

/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp152 LVM_INT32 *InFrames32; member in struct:android::__anon243::ReverbContext
271 pContext->InFrames32 = (LVM_INT32 *)malloc(LVREV_MAX_FRAME_SIZE * sizeof(LVM_INT32) * 2);
292 free(pContext->InFrames32);
434 if((pContext->InFrames32 == NULL)||(pContext->OutFrames32 == NULL)){
453 pContext->InFrames32[i] = (LVM_INT32)pIn[i]<<8;
458 pContext->InFrames32[2*i] = (pIn[2*i] * REVERB_SEND_LEVEL) >> 4; // <<8 + >>12
459 pContext->InFrames32[2*i+1] = (pIn[2*i+1] * REVERB_SEND_LEVEL) >> 4; // <<8 + >>12
467 memset(pContext->InFrames32,0,frameCount * sizeof(LVM_INT32) * samplesPerFrame);
473 pContext->InFrames32, /* Input buffer */

Completed in 811 milliseconds