commit | 46d12da05b1ed7420ce83525d95b847d0f69e9f2 | [log] [tgz] |
---|---|---|
author | Joseph Pirozzo <pirozzoj@google.com> | Thu Jan 30 19:45:14 2020 -0800 |
committer | Joseph Pirozzo <pirozzoj@google.com> | Mon Mar 16 19:12:12 2020 +0000 |
tree | d3286b648948faf32114891ea399ad4bd827c5c1 | |
parent | c1c7176aa4b6785b2bd071f5caed0862faa14510 [diff] |
AVRCP Controller Media Controller not ready Flip two lines of code to ensure that the media controller is set before updating the available actions. Prevents a race condition where a media player responds to a media state change before the controller is available. Bug: 147469352 Test: Inspection (And many on off cycles) Change-Id: I2aad90c1028ab0ca81da09233e7fb49bf18d89c9 (cherry picked from commit 64d01153446c3751085a848a63e155285bb52805) Merged-In: I2aad90c1028ab0ca81da09233e7fb49bf18d89c9 Change-Id: Ieac01f46658d8e426666b8b316caf69d31fc4c5a
diff --git a/src/com/android/bluetooth/avrcpcontroller/AvrcpControllerStateMachine.java b/src/com/android/bluetooth/avrcpcontroller/AvrcpControllerStateMachine.java index 8704b07..c319364 100644 --- a/src/com/android/bluetooth/avrcpcontroller/AvrcpControllerStateMachine.java +++ b/src/com/android/bluetooth/avrcpcontroller/AvrcpControllerStateMachine.java
@@ -296,9 +296,9 @@ @Override public void enter() { if (mMostRecentState == BluetoothProfile.STATE_CONNECTING) { + BluetoothMediaBrowserService.addressedPlayerChanged(mSessionCallbacks); BluetoothMediaBrowserService.notifyChanged(mAddressedPlayer.getPlaybackState()); broadcastConnectionStateChanged(BluetoothProfile.STATE_CONNECTED); - BluetoothMediaBrowserService.addressedPlayerChanged(mSessionCallbacks); } else { logD("ReEnteringConnected"); }