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.cpp153 process_buffer_t *InFrames; member
265 pContext->InFrames = (process_buffer_t *)calloc(pContext->bufferSizeIn, 1 /* size */); in EffectCreate()
282 free(pContext->InFrames); in EffectRelease()
354 if (pContext->InFrames == NULL || in process()
356 free(pContext->InFrames); in process()
358 pContext->InFrames = (process_buffer_t *)calloc(1, pContext->bufferSizeIn); in process()
369 if ((pContext->InFrames == NULL) || (pContext->OutFrames == NULL)) { in process()
380 static_assert(std::is_same<decltype(*pIn), decltype(*pContext->InFrames)>::value, in process()
382 memcpy(pContext->InFrames, pIn, frameCount * channels * sizeof(*pIn)); in process()
386 pContext->InFrames[2 * i] = (process_buffer_t)pIn[2 * i] * REVERB_SEND_LEVEL; in process()
[all …]