Searched refs:OutFrames (Results 1 – 1 of 1) sorted by relevance
156 process_buffer_t* OutFrames; member262 pContext->OutFrames = (process_buffer_t*)calloc(pContext->bufferSizeOut, 1 /* size */); in EffectCreate()279 free(pContext->OutFrames); in EffectRelease()352 if (pContext->OutFrames == NULL || pContext->bufferSizeOut < outSize) { in process()353 free(pContext->OutFrames); in process()355 pContext->OutFrames = (process_buffer_t*)calloc(1, pContext->bufferSizeOut); in process()359 if ((pContext->InFrames == NULL) || (pContext->OutFrames == NULL)) { in process()390 memset(pContext->OutFrames, 0, in process()391 frameCount * sizeof(*pContext->OutFrames) * FCC_2); // always stereo here in process()394 memset(pContext->InFrames, 0, frameCount * sizeof(*pContext->OutFrames) * channels); in process()[all …]