Home
last modified time | relevance | path

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

/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
DEffectReverb.cpp158 size_t bufferSizeOut; member
260 pContext->bufferSizeOut = LVREV_MAX_FRAME_SIZE * sizeof(process_buffer_t) * FCC_2; in EffectCreate()
262 pContext->OutFrames = (process_buffer_t*)calloc(pContext->bufferSizeOut, 1 /* size */); in EffectCreate()
281 pContext->bufferSizeOut = 0; in EffectRelease()
352 if (pContext->OutFrames == NULL || pContext->bufferSizeOut < outSize) { in process()
354 pContext->bufferSizeOut = outSize; in process()
355 pContext->OutFrames = (process_buffer_t*)calloc(1, pContext->bufferSizeOut); in process()