Home
last modified time | relevance | path

Searched refs:mAudioStreamMax (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
DAvrcp.java91 private final int mAudioStreamMax; field in Avrcp
167 mAudioStreamMax = mAudioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC); in Avrcp()
168 mVolumeStep = Math.max(AVRCP_BASE_VOLUME_STEP, AVRCP_MAX_VOL/mAudioStreamMax); in Avrcp()
820 return (int) Math.round((double) volume*mAudioStreamMax/AVRCP_MAX_VOL); in convertToAudioStreamVolume()
824 return (int) Math.ceil((double) volume*AVRCP_MAX_VOL/mAudioStreamMax); in convertToAvrcpVolume()
856 ProfileService.println(sb, "mAudioStreamMax: " + mAudioStreamMax); in dump()