Home
last modified time | relevance | path

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

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