Home
last modified time | relevance | path

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

/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
DEffectReverb.cpp154 process_buffer_t *OutFrames; member
266 pContext->OutFrames = (process_buffer_t *)calloc(pContext->bufferSizeOut, 1 /* size */); in EffectCreate()
283 free(pContext->OutFrames); in EffectRelease()
360 if (pContext->OutFrames == NULL || in process()
362 free(pContext->OutFrames); in process()
364 pContext->OutFrames = (process_buffer_t *)calloc(1, pContext->bufferSizeOut); in process()
369 if ((pContext->InFrames == NULL) || (pContext->OutFrames == NULL)) { in process()
392 memset(pContext->OutFrames, 0, in process()
393 frameCount * sizeof(*pContext->OutFrames) * FCC_2); //always stereo here in process()
397 frameCount * sizeof(*pContext->OutFrames) * channels); in process()
[all …]