Home | History | Annotate | Download | only in Reverb

Lines Matching refs:pIn

399 //  pIn:        pointer to stereo/mono 16 bit input data
410 int process( LVM_INT16 *pIn,
437 fwrite(pIn, frameCount*sizeof(LVM_INT16)*samplesPerFrame, 1, pContext->PcmInPtr);
450 pContext->InFrames32[i] = (LVM_INT32)pIn[i]<<8;
455 pContext->InFrames32[2*i] = (pIn[2*i] * REVERB_SEND_LEVEL) >> 4; // <<8 + >>12
456 pContext->InFrames32[2*i+1] = (pIn[2*i+1] * REVERB_SEND_LEVEL) >> 4; // <<8 + >>12
485 OutFrames16[i] = clamp16((pContext->OutFrames32[i]>>8) + (LVM_INT32)pIn[i]);