diff options
| author | 2022-10-01 10:56:23 +0000 | |
|---|---|---|
| committer | 2022-10-01 10:56:23 +0000 | |
| commit | 8263df5297ac47ad481cf9fb17c04872bc2540f7 (patch) | |
| tree | e747791093150d06bcf8046d06086a7c17815188 | |
| parent | a913ededbacf9b5a17c9d7de9aade64c65acfdf5 (diff) | |
| parent | b1066b67d289d410228c322a9a5f2d4a53a5a733 (diff) | |
Merge "BleAudioVolume: Fix calculation for the activated device" am: b1066b67d2
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2226717
Change-Id: Ifdc18e559afe19d94464fdef081d75fda0eb574f
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | services/core/java/com/android/server/audio/AudioDeviceInventory.java | 3 | ||||
| -rw-r--r-- | services/core/java/com/android/server/audio/AudioService.java | 7 |
2 files changed, 5 insertions, 5 deletions
diff --git a/services/core/java/com/android/server/audio/AudioDeviceInventory.java b/services/core/java/com/android/server/audio/AudioDeviceInventory.java index e90bfe85fc89..35da73ef58c0 100644 --- a/services/core/java/com/android/server/audio/AudioDeviceInventory.java +++ b/services/core/java/com/android/server/audio/AudioDeviceInventory.java @@ -377,7 +377,8 @@ public class AudioDeviceInventory { makeLeAudioDeviceUnavailable(address, btInfo.mAudioSystemDevice); } else if (switchToAvailable) { makeLeAudioDeviceAvailable(address, BtHelper.getName(btInfo.mDevice), - streamType, btInfo.mVolume, btInfo.mAudioSystemDevice, + streamType, btInfo.mVolume == -1 ? -1 : btInfo.mVolume * 10, + btInfo.mAudioSystemDevice, "onSetBtActiveDevice"); } break; diff --git a/services/core/java/com/android/server/audio/AudioService.java b/services/core/java/com/android/server/audio/AudioService.java index e9913999f062..c69eae3ede76 100644 --- a/services/core/java/com/android/server/audio/AudioService.java +++ b/services/core/java/com/android/server/audio/AudioService.java @@ -3841,7 +3841,7 @@ public class AudioService extends IAudioService.Stub } } - private void setLeAudioVolumeOnModeUpdate(int mode) { + private void setLeAudioVolumeOnModeUpdate(int mode, int streamType, int device) { switch (mode) { case AudioSystem.MODE_IN_COMMUNICATION: case AudioSystem.MODE_IN_CALL: @@ -3857,8 +3857,6 @@ public class AudioService extends IAudioService.Stub return; } - int streamType = getBluetoothContextualVolumeStream(mode); - // Currently, DEVICE_OUT_BLE_HEADSET is the only output type for LE_AUDIO profile. // (See AudioDeviceBroker#createBtDeviceInfo()) int index = mStreamStates[streamType].getIndex(AudioSystem.DEVICE_OUT_BLE_HEADSET); @@ -3869,6 +3867,7 @@ public class AudioService extends IAudioService.Stub + index + " maxIndex=" + maxIndex + " streamType=" + streamType); } mDeviceBroker.postSetLeAudioVolumeIndex(index, maxIndex, streamType); + mDeviceBroker.postApplyVolumeOnDevice(streamType, device, "setLeAudioVolumeOnModeUpdate"); } private void setStreamVolume(int streamType, int index, int flags, String callingPackage, @@ -5245,7 +5244,7 @@ public class AudioService extends IAudioService.Stub // Forcefully set LE audio volume as a workaround, since the value of 'device' // is not DEVICE_OUT_BLE_* even when BLE is connected. - setLeAudioVolumeOnModeUpdate(mode); + setLeAudioVolumeOnModeUpdate(mode, streamType, device); // when entering RINGTONE, IN_CALL or IN_COMMUNICATION mode, clear all SCO // connections not started by the application changing the mode when pid changes |