Home
last modified time | relevance | path

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

/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
DEffectReverb.cpp153 LVM_INT32 *OutFrames32; member
272 pContext->OutFrames32 = (LVM_INT32 *)malloc(LVREV_MAX_FRAME_SIZE * sizeof(LVM_INT32) * 2); in EffectCreate()
293 free(pContext->OutFrames32); in EffectRelease()
431 OutFrames16 = (LVM_INT16 *)pContext->OutFrames32; in process()
434 if((pContext->InFrames32 == NULL)||(pContext->OutFrames32 == NULL)){ in process()
464 memset(pContext->OutFrames32, 0, frameCount * sizeof(LVM_INT32) * 2); //always stereo here in process()
474 pContext->OutFrames32, /* Output buffer */ in process()
484 OutFrames16[i] = clamp16(pContext->OutFrames32[i]>>8); in process()
488 OutFrames16[i] = clamp16((pContext->OutFrames32[i]>>8) + (LVM_INT32)pIn[i]); in process()