A2dpSrc: Caching play command, and proccessing the same handled properly.
When two remote devices has been connected and streaming on current
active device, then turn off BT on Active remote device, then music
playback would get paused. After that, when play PT command sent from
inactive device, it has been cached till A2dp device gets active,then
it would get process when OnAudiodeviceadded API callback comes from
MM. But in this case OnAudiodeviceadded API callback won't come as
this is not a new device from MM perspective, so MM won't trigger
this call back which is the reason why, cached play command won't get
process, and it would not get dispatched to mediasession, which is the
reason why no audio issue has been seen.
To avoid this issue, made the changes in below way.
- Removed the MM audio dependency to wait for the OnAudiodeviceadded
callback. Instead of this, when Avrcp triggers startSHO API when
Play PT received from inactive device, where a2dp device gets active
and set the Avrcp device active, then we can process the cached play
command.
- Caching of play command made device specific.
CRs-Fixed: 2543767
Change-Id: I3ba15945c43336d19d37a9022fbadf49ff3f1a72
1 file changed