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

/frameworks/av/services/audioflinger/
H A DFastMixer.cpp365 float vrf = float_from_gain(gain_minifloat_unpack_right(vlr)); local
368 mMixer->setParameter(name, AudioMixer::VOLUME, AudioMixer::VOLUME1, &vrf);
H A DThreads.cpp3942 float vlf, vrf, vaf; // in [0.0, 1.0] float format local
3945 vlf = vrf = vaf = 0.;
3957 vrf = float_from_gain(gain_minifloat_unpack_right(vlr));
3963 if (vrf > GAIN_FLOAT_UNITY) {
3964 ALOGV("Track right volume out of range: %.3g", vrf);
3965 vrf = GAIN_FLOAT_UNITY;
3969 vrf *= v;
3974 vr = (uint32_t) (scaleto8_24 * vrf);
3992 vrf = (float)vr / (1 << 24);
4008 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME1, &vrf);
[all...]

Completed in 170 milliseconds