AVRCP: Avoid multiple update to audio
If setAsoluteVolume response will not match to
absolute volume requset sent than need to update volume
to MM audio.
SetAbsoluteVolume request is accepted by remote than no
need to update again MM audio.
If volume command is in progress then cache the MM volume
change trigger for deferred processing.
CRs-Fixed: 2649113
Change-Id: I6061a73008b83292571767ff9096e06adb0fd004
diff --git a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
index cbd73c7..c415690 100644
--- a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
+++ b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
@@ -1153,7 +1153,7 @@
byte[] bdaddr = data.getByteArray("BdAddress");
String address = Utils.getAddressStringFromByte(bdaddr);
BluetoothDevice device, activeDevice = null;
- Log.v(TAG, "event for device address " + address);
+ Log.v(TAG, "event for device address " + address );
deviceIndex = getIndexForDevice(mAdapter.getRemoteDevice(address));
if (deviceIndex == INVALID_DEVICE_INDEX) {
Log.e(TAG,"invalid index for device");
@@ -1200,6 +1200,8 @@
sendMessageDelayed(obtainMessage(MSG_ABS_VOL_TIMEOUT,
0, 0, deviceFeatures[deviceIndex].mCurrentDevice),
CMD_TIMEOUT_DELAY);
+ deviceFeatures[deviceIndex].mLastLocalVolume = convertToAudioStreamVolume
+ (deviceFeatures[deviceIndex].mLastRequestedVolume);
deviceFeatures[deviceIndex].mLastRequestedVolume = -1;
deviceFeatures[deviceIndex].mLocalVolume = convertToAudioStreamVolume(absVol);
Log.v(TAG, "Reset cached lastreq vol = " +
@@ -1313,6 +1315,15 @@
deviceFeatures[deviceIndex].mLocalVolume = volIndex;
deviceFeatures[deviceIndex].mLastRequestedVolume = -1;
+ /*Audio volume update to MM audio if message type is accept and setAbsoluteVolume
+ and accept response volume matched*/
+ if ((msg.arg2 != AVRC_RSP_ACCEPT) || (msg.arg2 == AVRC_RSP_ACCEPT &&
+ deviceFeatures[deviceIndex].mLastLocalVolume != -1 &&
+ deviceFeatures[deviceIndex].mLastLocalVolume != volIndex)) {
+ notifyVolumeChanged(deviceFeatures[deviceIndex].mLocalVolume, isShowUI);
+ long pecentVolChanged = ((long)absVol * 100) / 0x7f;
+ Log.e(TAG, "percent volume changed: " + pecentVolChanged + "%");
+ }
if (deviceFeatures[deviceIndex].mLastLocalVolume != -1
&& msg.arg2 == AVRC_RSP_ACCEPT) {
if (deviceFeatures[deviceIndex].mLastLocalVolume != volIndex) {
@@ -1325,10 +1336,7 @@
deviceFeatures[deviceIndex].mLocalVolume;
}
}
- notifyVolumeChanged(deviceFeatures[deviceIndex].mLocalVolume, isShowUI);
deviceFeatures[deviceIndex].mRemoteVolume = absVol;
- long pecentVolChanged = ((long)absVol * 100) / 0x7f;
- Log.e(TAG, "percent volume changed: " + pecentVolChanged + "%");
} else if (deviceFeatures[deviceIndex].mLastRemoteVolume > 0
&& deviceFeatures[deviceIndex].mLastRemoteVolume < AVRCP_MAX_VOL &&
deviceFeatures[deviceIndex].mLocalVolume == volIndex &&
@@ -1366,7 +1374,9 @@
(isTwsPlusPair(activeDevice, deviceFeatures[i].mCurrentDevice) ||
Objects.equals(activeDevice, deviceFeatures[i].mCurrentDevice)) &&
deviceFeatures[i].isAbsoluteVolumeSupportingDevice &&
- deviceFeatures[i].mLocalVolume != msg.arg1) {
+ ((deviceFeatures[i].mVolCmdSetInProgress ||
+ deviceFeatures[i].mVolCmdAdjustInProgress) ||
+ deviceFeatures[i].mLocalVolume != msg.arg1)) {
deviceIndex = i;
@@ -2949,9 +2959,10 @@
}
public void setAbsoluteVolume(int volume) {
- Log.v(TAG, "Enter setAbsoluteVolume");
+ int streamVolume = mAudioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
+ Log.v(TAG, "Enter setAbsoluteVolume" + streamVolume);
if (volume == mLocalVolume) {
- if (DEBUG) Log.v(TAG, "setAbsoluteVolume is setting same index, ignore " + volume);
+ if (DEBUG) Log.v(TAG, "setAbsoluteVolume is setting same index, ignore " + volume + " stream volume ");
return;
}
Log.d(TAG, "pts_test = " + pts_test + " volume = " + volume +