Home | History | Annotate | Download | only in libaudio-qdsp5v2

Lines Matching refs:volume

26 // Max volume for streams when playing over bluetooth SCO device while in call: -18dB
28 // Min music volume for 3.5mm jack in car dock: -10dB
238 // force volume on A2DP output to maximum if playing through car dock speakers
239 // as volume is applied on the car dock and controlled via car dock keys.
247 float volume = AudioPolicyManagerBase::computeVolume(stream, index, output, device);
249 // limit stream volume when in call and playing over bluetooth SCO device to
252 if (volume > IN_CALL_SCO_VOLUME_MAX) {
253 ALOGV("computeVolume limiting SYSTEM volume %f to %f",volume, IN_CALL_SCO_VOLUME_MAX);
254 volume = IN_CALL_SCO_VOLUME_MAX;
258 // in car dock: when using the 3.5mm jack to play media, set a fixed volume as access to the
259 // physical volume keys is blocked by the car dock frame.
264 volume = CAR_DOCK_MUSIC_MINI_JACK_VOLUME_MIN;
267 return volume;