Home
last modified time | relevance | path

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

/frameworks/base/media/libeffects/lvm/wrapper/Reverb/
DEffectReverb.cpp150 LVM_INT32 *OutFrames32; member
291 pContext->OutFrames32 = (LVM_INT32 *)malloc(LVREV_MAX_FRAME_SIZE * sizeof(LVM_INT32) * 2); in EffectCreate()
312 free(pContext->OutFrames32); in EffectRelease()
428 OutFrames16 = (LVM_INT16 *)pContext->OutFrames32; in process()
431 if((pContext->InFrames32 == NULL)||(pContext->OutFrames32 == NULL)){ in process()
461 memset(pContext->OutFrames32, 0, frameCount * sizeof(LVM_INT32) * 2); //always stereo here in process()
471 pContext->OutFrames32, /* Output buffer */ in process()
481 OutFrames16[i] = clamp16(pContext->OutFrames32[i]>>8); in process()
485 OutFrames16[i] = clamp16((pContext->OutFrames32[i]>>8) + (LVM_INT32)pIn[i]); in process()