Searched defs:vlf (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/services/audioflinger/
H A DFastMixer.cpp357 float vlf = float_from_gain(gain_minifloat_unpack_left(vlr)); local
360 mixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME0, &vlf);
H A DThreads.cpp3453 float vlf, vrf, vaf; // in [0.0, 1.0] float format local
3456 vlf = vrf = vaf = 0.;
3467 vlf = float_from_gain(gain_minifloat_unpack_left(vlr));
3470 if (vlf > GAIN_FLOAT_UNITY) {
3471 ALOGV("Track left volume out of range: %.3g", vlf);
3472 vlf = GAIN_FLOAT_UNITY;
3479 vlf *= v;
3484 vl = (uint32_t) (scaleto8_24 * vlf);
3502 vlf = (float)vl / (1 << 24);
3518 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME0, &vlf);
[all...]

Completed in 253 milliseconds