public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ v3 0/9] Add BIP for AVRCP covert art OBEX client
@ 2024-09-16 13:28 Frédéric Danis
  2024-09-16 13:28 ` [PATCH BlueZ v3 1/9] obexd: Add PSM support to session create Frédéric Danis
                   ` (9 more replies)
  0 siblings, 10 replies; 14+ messages in thread
From: Frédéric Danis @ 2024-09-16 13:28 UTC (permalink / raw)
  To: linux-bluetooth

If AVRCP Target supports Cover Art download its SDP record contains an
additional access protocol for OBEX with an LCAP PSM on which the OBEX
client session should connect to, with the specific OBEX target header
7163DD54-4A7E-11E2-B47C-0050C2490048.

Once the OBEX session is connected, the AVRCP track metadata will contain
an Image Handle which can be used to get the associated image using
GetImageThumbnail or GetImage with one of the description property found
with GetImageProperties.

This has been tested with iPhone 14, iPhone 15 Pro and Samsung S23.

v1 -> v2: Parse integer properties as integer instead of string
          Return GetImageProperties values as aa{sv} instead of aa{ss}
          Get properties for GetImage as a{sv} instead of a{ss}
          Set new properties and interface as experimental
v2 -> v3: Rename obexd/client/bip-avrcp.[ch] to obexd/client/bip.[ch]
          Update the AVRCP Controller version in SDP to 1.6
          Add commit to support for specific headers in obex transfer
          Fix memory leaks

Frédéric Danis (9):
  obexd: Add PSM support to session create
  player: Add OBEX PSM port for cover art support
  player: Add image handle support property
  obexd: Add support for specific headers in obex transfer
  obexd: Add BIP client for AVRCP cover art download
  obexd: Add GetImageProperties to bip-avrcp
  obexd: Add GetImage to bip-avrcp
  avrcp: Update controller SDP record with cover art support
  doc: Add description of org.bluez.obex.BipAvrcp

 Makefile.am                     |   9 +-
 Makefile.obexd                  |   2 +
 doc/org.bluez.MediaPlayer.rst   |  11 +
 doc/org.bluez.obex.BipAvrcp.rst |  72 +++
 doc/org.bluez.obex.Client.rst   |   5 +
 doc/org.bluez.obex.Session.rst  |   5 +
 monitor/avctp.c                 |   3 +
 obexd/client/bip-common.c       | 800 ++++++++++++++++++++++++++++++++
 obexd/client/bip-common.h       |  24 +
 obexd/client/bip.c              | 440 ++++++++++++++++++
 obexd/client/bip.h              |  12 +
 obexd/client/manager.c          |  16 +-
 obexd/client/session.c          |  27 +-
 obexd/client/session.h          |   1 +
 obexd/client/transfer.c         |  19 +
 obexd/client/transfer.h         |   2 +
 profiles/audio/avrcp.c          |  66 ++-
 profiles/audio/avrcp.h          |   3 +-
 profiles/audio/player.c         |  30 ++
 profiles/audio/player.h         |   1 +
 tools/parser/avrcp.c            |   3 +
 21 files changed, 1531 insertions(+), 20 deletions(-)
 create mode 100644 doc/org.bluez.obex.BipAvrcp.rst
 create mode 100644 obexd/client/bip-common.c
 create mode 100644 obexd/client/bip-common.h
 create mode 100644 obexd/client/bip.c
 create mode 100644 obexd/client/bip.h

-- 
2.34.1


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2024-09-16 18:47 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-16 13:28 [PATCH BlueZ v3 0/9] Add BIP for AVRCP covert art OBEX client Frédéric Danis
2024-09-16 13:28 ` [PATCH BlueZ v3 1/9] obexd: Add PSM support to session create Frédéric Danis
2024-09-16 18:47   ` Add BIP for AVRCP covert art OBEX client bluez.test.bot
2024-09-16 13:28 ` [PATCH BlueZ v3 2/9] player: Add OBEX PSM port for cover art support Frédéric Danis
2024-09-16 13:28 ` [PATCH BlueZ v3 3/9] player: Add image handle support property Frédéric Danis
2024-09-16 13:28 ` [PATCH BlueZ v3 4/9] obexd: Add support for specific headers in obex transfer Frédéric Danis
2024-09-16 13:28 ` [PATCH BlueZ v3 5/9] obexd: Add BIP client for AVRCP cover art download Frédéric Danis
2024-09-16 17:27   ` Luiz Augusto von Dentz
2024-09-16 13:28 ` [PATCH BlueZ v3 6/9] obexd: Add GetImageProperties to bip-avrcp Frédéric Danis
2024-09-16 13:28 ` [PATCH BlueZ v3 7/9] obexd: Add GetImage " Frédéric Danis
2024-09-16 13:28 ` [PATCH BlueZ v3 8/9] avrcp: Update controller SDP record with cover art support Frédéric Danis
2024-09-16 13:28 ` [PATCH BlueZ v3 9/9] doc: Add description of org.bluez.obex.BipAvrcp Frédéric Danis
2024-09-16 17:40   ` Luiz Augusto von Dentz
2024-09-16 17:50 ` [PATCH BlueZ v3 0/9] Add BIP for AVRCP covert art OBEX client patchwork-bot+bluetooth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox