Lines Matching refs:outFrames
1398 size_t outFrames = state->frameCount; in process__nop() local
1399 while (outFrames) { in process__nop()
1400 t3.buffer.frameCount = outFrames; in process__nop()
1403 outFrames -= t3.buffer.frameCount; in process__nop()
1457 size_t outFrames = BLOCKSIZE; in process__genericNoResampling() local
1462 while (outFrames) { in process__genericNoResampling()
1470 size_t inFrames = (t.frameCount > outFrames)?outFrames:t.frameCount; in process__genericNoResampling()
1472 t.hook(&t, outTemp + (BLOCKSIZE - outFrames) * t.mMixerChannelCount, in process__genericNoResampling()
1475 outFrames -= inFrames; in process__genericNoResampling()
1480 if (t.frameCount == 0 && outFrames) { in process__genericNoResampling()
1483 (BLOCKSIZE - outFrames); in process__genericNoResampling()
1560 size_t outFrames = 0; in process__genericResampling() local
1562 while (outFrames < numFrames) { in process__genericResampling()
1563 t.buffer.frameCount = numFrames - outFrames; in process__genericResampling()
1571 aux += outFrames; in process__genericResampling()
1573 t.hook(&t, outTemp + outFrames * t.mMixerChannelCount, t.buffer.frameCount, in process__genericResampling()
1575 outFrames += t.buffer.frameCount; in process__genericResampling()
1622 size_t outFrames = b.frameCount; in process__OneTrack16BitsStereoNoResampling() local
1635 } while (--outFrames); in process__OneTrack16BitsStereoNoResampling()
1650 } while (--outFrames); in process__OneTrack16BitsStereoNoResampling()
1658 } while (--outFrames); in process__OneTrack16BitsStereoNoResampling()
1776 void AudioMixer::volumeMix(TO *out, size_t outFrames, in volumeMix() argument
1781 volumeRampMulti<MIXTYPE>(t->mMixerChannelCount, out, outFrames, in, aux, in volumeMix()
1787 volumeMulti<MIXTYPE>(t->mMixerChannelCount, out, outFrames, in, aux, in volumeMix()
1792 volumeRampMulti<MIXTYPE>(t->mMixerChannelCount, out, outFrames, in, aux, in volumeMix()
1798 volumeMulti<MIXTYPE>(t->mMixerChannelCount, out, outFrames, in, aux, in volumeMix()
1844 const size_t outFrames = b.frameCount; in process_NoResampleOneTrack() local
1846 out, outFrames, in, aux, ramp, t); in process_NoResampleOneTrack()
1848 out += outFrames * channels; in process_NoResampleOneTrack()