AVRCP: setAbsoluteVolume get active device from a2dp
Before sending setAbsoluteVolume get active device
from a2dp service.
CRs-Fixed: 2516191
Change-Id: Ie207a7f98c95fff8df285e9f829fd467a329e09c
diff --git a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
index cd1d595..e5150d2 100644
--- a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
+++ b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
@@ -1348,11 +1348,11 @@
if (DEBUG) Log.v(TAG, "MSG_SET_ABSOLUTE_VOLUME");
int avrcpVolume = convertToAvrcpVolume(msg.arg1);
- BluetoothDevice activeDevice = null;
+ BluetoothDevice activeDevice = mA2dpService.getActiveDevice();
avrcpVolume = Math.min(AVRCP_MAX_VOL, Math.max(0, avrcpVolume));
for (int i = 0; i < maxAvrcpConnections; i++) {
if (deviceFeatures[i].mCurrentDevice != null && activeDevice != null &&
- Objects.equals(activeDevice, deviceFeatures[deviceIndex].mCurrentDevice) &&
+ Objects.equals(activeDevice, deviceFeatures[i].mCurrentDevice) &&
deviceFeatures[i].isAbsoluteVolumeSupportingDevice) {
deviceIndex = i;