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

/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp151 LVM_INT32 *OutFrames32; member in struct:android::__anon464::ReverbContext
294 pContext->OutFrames32 = (LVM_INT32 *)malloc(LVREV_MAX_FRAME_SIZE * sizeof(LVM_INT32) * 2);
315 free(pContext->OutFrames32);
453 OutFrames16 = (LVM_INT16 *)pContext->OutFrames32;
456 if((pContext->InFrames32 == NULL)||(pContext->OutFrames32 == NULL)){
486 memset(pContext->OutFrames32, 0, frameCount * sizeof(LVM_INT32) * 2); //always stereo here
496 pContext->OutFrames32, /* Output buffer */
506 OutFrames16[i] = clamp16(pContext->OutFrames32[i]>>8);
510 OutFrames16[i] = clamp16((pContext->OutFrames32[i]>>8) + (LVM_INT32)pIn[i]);

Completed in 117 milliseconds