echorules
echorules

Reputation: 11

AVRCP 1.4+ and iPhone GetFolderItems MediaPlayerList only shows the active player

I have an AVRCP application where the controller (CT) is a car audio system and an iPhone is the target (TG). If the iPhone has multiple media players installed, should it be possible to get a list of them and select one?

Right now when I issue a GetFolderItems MediaPlayerList (PDU 0x71) command only one player is listed (whichever player was active last). I can successfully SetAddressedPlayer and SetBrowsedPlayer and the listed player will report and support it's listed features. If I select a different player from the phone (i.e. Pandora) then only that player is listed by the PDU 0x71 command.

Is it possible this functionality is restricted to iAP/MFi?

Upvotes: 1

Views: 892

Answers (1)

Brendan Shanks
Brendan Shanks

Reputation: 3236

No, iOS doesn't allow you to switch between media players over AVRCP. You might be able to do something similar over iAP2, but even that is very limited (Apple generally wants these actions to be user-initiated).

Apple's Bluetooth Design Guidelines have some AVRCP advice, including:

Currently only the built-in Music app supports browsing. When switching between players, an EVENT_AVAILABLE_PLAYERS_CHANGED notification and an EVENT_ADDRESSED_PLAYER_CHANGED notification will be generated. The UI then needs to look at the feature bit mask of the listed player to determine whether browsing is currently available.

Upvotes: 1

Related Questions