Home
last modified time | relevance | path

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

/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
DEffectReverb.cpp155 process_buffer_t* InFrames; member
261 pContext->InFrames = (process_buffer_t*)calloc(pContext->bufferSizeIn, 1 /* size */); in EffectCreate()
278 free(pContext->InFrames); in EffectRelease()
347 if (pContext->InFrames == NULL || pContext->bufferSizeIn < inSize) { in process()
348 free(pContext->InFrames); in process()
350 pContext->InFrames = (process_buffer_t*)calloc(1, pContext->bufferSizeIn); in process()
359 if ((pContext->InFrames == NULL) || (pContext->OutFrames == NULL)) { in process()
369 static_assert(std::is_same<decltype(*pIn), decltype(*pContext->InFrames)>::value, in process()
371 memcpy(pContext->InFrames, pIn, frameCount * channels * sizeof(*pIn)); in process()
376 pContext->InFrames[FCC_2 * i] = in process()
[all …]