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

/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp150 LVM_INT32 *InFrames32; member in struct:android::__anon464::ReverbContext
293 pContext->InFrames32 = (LVM_INT32 *)malloc(LVREV_MAX_FRAME_SIZE * sizeof(LVM_INT32) * 2);
314 free(pContext->InFrames32);
456 if((pContext->InFrames32 == NULL)||(pContext->OutFrames32 == NULL)){
475 pContext->InFrames32[i] = (LVM_INT32)pIn[i]<<8;
480 pContext->InFrames32[2*i] = (pIn[2*i] * REVERB_SEND_LEVEL) >> 4; // <<8 + >>12
481 pContext->InFrames32[2*i+1] = (pIn[2*i+1] * REVERB_SEND_LEVEL) >> 4; // <<8 + >>12
489 memset(pContext->InFrames32,0,frameCount * sizeof(LVM_INT32) * samplesPerFrame);
495 pContext->InFrames32, /* Input buffer */

Completed in 365 milliseconds