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

/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.cpp3936 float vlf, vrf, vaf; // in [0.0, 1.0] float format local
3939 vlf = vrf = vaf = 0.;
3951 vrf = float_from_gain(gain_minifloat_unpack_right(vlr));
3957 if (vrf > GAIN_FLOAT_UNITY) {
3958 ALOGV("Track right volume out of range: %.3g", vrf);
3959 vrf = GAIN_FLOAT_UNITY;
3963 vrf *= v;
3968 vr = (uint32_t) (scaleto8_24 * vrf);
3986 vrf = (float)vr / (1 << 24);
4002 mAudioMixer->setParameter(name, param, AudioMixer::VOLUME1, &vrf);
[all...]

Completed in 87 milliseconds