Home
last modified time | relevance | path

Searched refs:auxInc (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/services/audioflinger/
DAudioMixer.cpp458 t->auxInc = 0; in getTrackName()
890 &track.auxLevel, &track.prevAuxLevel, &track.auxInc, in setParameter()
1003 if (((auxInc>0) && (((prevAuxLevel+auxInc)>>16) >= auxLevel)) || in adjustVolumeRamp()
1004 ((auxInc<0) && (((prevAuxLevel+auxInc)>>16) <= auxLevel))) { in adjustVolumeRamp()
1005 auxInc = 0; in adjustVolumeRamp()
1223 if (CC_UNLIKELY(t->volumeInc[0]|t->volumeInc[1]|t->auxInc)) { in track__genericResample()
1264 const int32_t vaInc = t->auxInc; in volumeRampStereo()
1331 if (CC_UNLIKELY(t->volumeInc[0]|t->volumeInc[1]|t->auxInc)) { in track__16BitsStereo()
1337 const int32_t vaInc = t->auxInc; in track__16BitsStereo()
1421 if (CC_UNLIKELY(t->volumeInc[0]|t->volumeInc[1]|t->auxInc)) { in track__16BitsMono()
[all …]
DAudioMixer.h176 int32_t auxInc; member
232 bool needsRamp() { return (volumeInc[0] | volumeInc[1] | auxInc) != 0; } in needsRamp()