Lines Matching refs:aux
539 void AudioMixerBase::TrackBase::adjustVolumeRamp(bool aux, bool useFloat) in adjustVolumeRamp() argument
569 if (aux) { in adjustVolumeRamp()
774 int32_t* out, size_t outFrameCount, int32_t* temp, int32_t* aux) in track__genericResample() argument
780 if (aux != NULL) { in track__genericResample()
787 volumeRampStereo(out, outFrameCount, temp, aux); in track__genericResample()
789 volumeStereo(out, outFrameCount, temp, aux); in track__genericResample()
796 volumeRampStereo(out, outFrameCount, temp, aux); in track__genericResample()
808 size_t outFrameCount __unused, int32_t* temp __unused, int32_t* aux __unused) in track__nop()
813 int32_t* out, size_t frameCount, int32_t* temp, int32_t* aux) in volumeRampStereo() argument
825 if (CC_UNLIKELY(aux != NULL)) { in volumeRampStereo()
836 *aux++ += (va >> 17) * (l + r); in volumeRampStereo()
852 adjustVolumeRamp(aux != NULL); in volumeRampStereo()
856 int32_t* out, size_t frameCount, int32_t* temp, int32_t* aux) in volumeStereo() argument
861 if (CC_UNLIKELY(aux != NULL)) { in volumeStereo()
870 aux[0] = mulAdd(a, va, aux[0]); in volumeStereo()
871 aux++; in volumeStereo()
885 int32_t* out, size_t frameCount, int32_t* temp __unused, int32_t* aux) in track__16BitsStereo() argument
890 if (CC_UNLIKELY(aux != NULL)) { in track__16BitsStereo()
910 *aux++ += (va >> 17) * (l + r); in track__16BitsStereo()
933 aux[0] = mulAdd(a, va, aux[0]); in track__16BitsStereo()
934 aux++; in track__16BitsStereo()
977 int32_t* out, size_t frameCount, int32_t* temp __unused, int32_t* aux) in track__16BitsMono() argument
982 if (CC_UNLIKELY(aux != NULL)) { in track__16BitsMono()
1000 *aux++ += (va >> 16) * l; in track__16BitsMono()
1021 aux[0] = mulAdd(l, va, aux[0]); in track__16BitsMono()
1022 aux++; in track__16BitsMono()
1120 int32_t *aux = NULL; in process__genericNoResampling() local
1122 aux = t->auxBuffer + numFrames; in process__genericNoResampling()
1134 inFrames, mResampleTemp.get() /* naked ptr */, aux); in process__genericNoResampling()
1137 if (CC_UNLIKELY(aux != NULL)) { in process__genericNoResampling()
1138 aux += inFrames; in process__genericNoResampling()
1188 int32_t *aux = NULL; in process__genericResampling() local
1190 aux = t->auxBuffer; in process__genericResampling()
1197 (t.get()->*t->hook)(outTemp, numFrames, mResampleTemp.get() /* naked ptr */, aux); in process__genericResampling()
1213 aux != nullptr ? aux + outFrames : nullptr); in process__genericResampling()
1349 const TI* in, TA* aux, TV *vol, const TV *volinc, TAV *vola, TAV volainc) in volumeRampMulti() argument
1354 volumeRampMultiArray[channels - 1](out, frameCount, in, aux, vol, volinc, vola, volainc); in volumeRampMulti()
1379 const TI* in, TA* aux, const TV *vol, TAV vola) in volumeMulti() argument
1384 volumeMultiArray[channels - 1](out, frameCount, in, aux, vol, vola); in volumeMulti()
1400 const TI *in, TA *aux, bool ramp) in volumeMix() argument
1404 volumeRampMulti<MIXTYPE>(mMixerChannelCount, out, outFrames, in, aux, in volumeMix()
1413 adjustVolumeRamp(aux != NULL, true); in volumeMix()
1416 volumeMulti<MIXTYPE>(mMixerChannelCount, out, outFrames, in, aux, in volumeMix()
1427 volumeRampMulti<MIXTYPE>(mMixerChannelCount, out, outFrames, in, aux, in volumeMix()
1430 adjustVolumeRamp(aux != NULL); in volumeMix()
1433 volumeMulti<MIXTYPE>(mMixerChannelCount, out, outFrames, in, aux, in volumeMix()
1457 TA* aux = reinterpret_cast<TA*>(t->auxBuffer); in process__noResampleOneTrack() local
1480 out, outFrames, in, aux, ramp); in process__noResampleOneTrack()
1483 if (aux != NULL) { in process__noResampleOneTrack()
1484 aux += outFrames; in process__noResampleOneTrack()
1492 t->adjustVolumeRamp(aux != NULL, std::is_same_v<TI, float>); in process__noResampleOneTrack()
1505 void AudioMixerBase::TrackBase::track__Resample(TO* out, size_t outFrameCount, TO* temp, TA* aux) in track__Resample() argument
1511 || ramp || aux != NULL) { in track__Resample()
1520 out, outFrameCount, temp, aux, ramp); in track__Resample()
1538 TO* out, size_t frameCount, TO* temp __unused, TA* aux) in track__NoResample() argument
1544 out, frameCount, in, aux, needsRamp()); in track__NoResample()