AVRCP: FF/Rewind PlayState fix during device switch
FF/Rewind long press from active device and at the
same time PT Play from inactive device resulting
ignoring FF Release update from first device which
now become inactive. Hence reset the FF/Rewind flag
at the time of active device switch so that proper
playstatus would be updated to active and inactive
devices after device switch.
CRs-Fixed: 2548597
Change-Id: Ia8b1b76b66e9de42ff7db165dfd98d0510f63158
diff --git a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
index ec97714..f27e387 100644
--- a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
+++ b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
@@ -147,7 +147,6 @@
private boolean mFastforward;
private boolean mRewind;
- private boolean mRemotePassthroughCmd;
private String mAddress;
@@ -487,7 +486,6 @@
}
mFastforward = false;
mRewind = false;
- mRemotePassthroughCmd = false;
mCurrentBrowsingDevice = null;
mBrowsingActiveDevice = null;
@@ -1713,6 +1711,9 @@
}
deviceFeatures[deviceIndex].isActiveDevice = true;
+ if (mFastforward) mFastforward = false;
+ if (mRewind) mRewind = false;
+
Log.w(TAG, "Active device Calling SetBrowsePackage for " + mCachedBrowsePlayer);
if (mCachedBrowsePlayer != null && is_player_updated_for_browse == false) {
SetBrowsePackage(mCachedBrowsePlayer);