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

/packages/apps/Bluetooth/src/com/android/bluetooth/newavrcp/
H A DAvrcpVolumeManager.java54 static int avrcpToSystemVolume(int avrcpVolume) { argument
55 return (int) Math.floor((double) avrcpVolume * sDeviceMaxVolume / AVRCP_MAX_VOL);
59 int avrcpVolume = (int) Math.floor((double) deviceVolume
61 if (avrcpVolume > 127) avrcpVolume = 127;
62 return avrcpVolume;
82 int avrcpVolume = systemToAvrcpVolume(savedVolume);
83 Log.i(TAG, "switchVolumeDevice: Updating device volume: avrcpVolume=" + avrcpVolume);
84 mNativeInterface.sendVolumeChanged(avrcpVolume);
[all...]
H A DAvrcpTargetService.java244 void setVolume(int avrcpVolume) { argument
246 (int) Math.floor((double) avrcpVolume * sDeviceMaxVolume / AVRCP_MAX_VOL);
248 Log.d(TAG, "SendVolumeChanged: avrcpVolume=" + avrcpVolume
261 int avrcpVolume =
263 if (avrcpVolume > 127) avrcpVolume = 127;
265 Log.d(TAG, "SendVolumeChanged: avrcpVolume=" + avrcpVolume
269 mNativeInterface.sendVolumeChanged(avrcpVolume);
[all...]

Completed in 85 milliseconds