BT: Handle play passthrough to a single earbud
- Sending play command to active earbud leads to
pause being sent to its pair "non-active" earbud.
- This change ensures that pause is not sent to
non-active remote if its a pair-earbud of active
earbud.
CRs-Fixed: 2549560
Change-Id: I4c15c3043efd66dcef5b0c9d8b61310c52289330
diff --git a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
index f5cb2d3..710afbb 100644
--- a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
+++ b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
@@ -2062,7 +2062,8 @@
for (int i = 0; i < maxAvrcpConnections; i++) {
if (i != deviceIndex && !deviceFeatures[i].isActiveDevice &&
deviceFeatures[i].mLastRspPlayStatus == PLAYSTATUS_PLAYING &&
- (state != null && state.getState() == PlaybackState.STATE_PLAYING)) {
+ (state != null && state.getState() == PlaybackState.STATE_PLAYING) &&
+ (!isTwsPlusPair(deviceFeatures[i].mCurrentDevice, deviceFeatures[deviceIndex].mCurrentDevice))) {
PlaybackState.Builder playState = new PlaybackState.Builder();
playState.setState(PlaybackState.STATE_PAUSED,
PlaybackState.PLAYBACK_POSITION_UNKNOWN, 1.0f);