Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/libaudioprocessing/
H A DAudioMixerBase.cpp112 t->auxLevel = 0; in create()
439 &track->auxLevel, &track->prevAuxLevel, &track->auxInc, in setParameter()
557 prevAuxLevel = auxLevel << 16; in adjustVolumeRamp()
563 if ((auxInc > 0 && ((prevAuxLevel + auxInc) >> 16) >= auxLevel) || in adjustVolumeRamp()
566 prevAuxLevel = auxLevel << 16; in adjustVolumeRamp()
627 if (t->auxLevel != 0 && t->auxBuffer != NULL) { in process__validate()
844 const int16_t va = auxLevel; in volumeStereo()
907 const int16_t va = (int16_t)auxLevel; in track__16BitsStereo()
997 const int16_t va = (int16_t)auxLevel; in track__16BitsMono()
1403 auxLevel in volumeMix()
[all …]
/aosp12/frameworks/av/media/libaudioprocessing/include/media/
H A DAudioMixerBase.h253 int16_t auxLevel; // 0 <= auxLevel <= MAX_GAIN_INT, but signed for mul performance member