HomeSort by relevance Sort by last modified time
    Searched refs:AUXLEVEL (Results 1 - 3 of 3) sorted by null

  /frameworks/av/services/audioflinger/
AudioMixer.h 87 AUXLEVEL = 0x4210,
163 int16_t auxLevel; // 0 <= auxLevel <= MAX_GAIN_INT, but signed for mul performance
AudioMixer.cpp 183 t->auxLevel = 0;
506 case AUXLEVEL:
508 if (track.auxLevel != valueInt) {
509 ALOGV("setParameter(VOLUME, AUXLEVEL: %04x)", valueInt);
510 track.prevAuxLevel = track.auxLevel << 16;
511 track.auxLevel = valueInt;
578 if (((auxInc>0) && (((prevAuxLevel+auxInc)>>16) >= auxLevel)) ||
579 ((auxInc<0) && (((prevAuxLevel+auxInc)>>16) <= auxLevel))) {
581 prevAuxLevel = auxLevel<<16;
662 if (t.auxLevel != 0 && t.auxBuffer != NULL)
    [all...]
AudioFlinger.cpp     [all...]

Completed in 55 milliseconds