aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSal Savage <salsavage@google.com>2021-01-15 19:59:49 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-01-15 19:59:49 +0000
commitd5dad12ed6a91194b8c77ed6c598fcfe2ac6e45e (patch)
treec194982a79eaf2836fe5ed120681fb5852ca1bea /include
parenta049084bbcfac2f003e1b0bc9a40afc8c6d6e5e5 (diff)
parent034b268321a8845557ab69a431aeaf03c2d1352e (diff)
downloadbt-d5dad12ed6a91194b8c77ed6c598fcfe2ac6e45e.tar.gz
Merge changes from topic "avrcp-target-cover-art"
* changes: Add tests for the AVRCP Target Cover Art feature Pass BIP client status down and use it to decide to send image handles Add a path to add the PSM of the BIP OBEX server to the SDP record Allow NewAvrcp to manage its own SDP record
Diffstat (limited to 'include')
-rw-r--r--include/hardware/avrcp/avrcp.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/hardware/avrcp/avrcp.h b/include/hardware/avrcp/avrcp.h
index 577acb9f7..66a5058b0 100644
--- a/include/hardware/avrcp/avrcp.h
+++ b/include/hardware/avrcp/avrcp.h
@@ -176,8 +176,11 @@ class ServiceInterface {
// Volume is disabled.
virtual void Init(MediaInterface* mediaInterface,
VolumeInterface* volumeInterface) = 0;
+ virtual void RegisterBipServer(int psm) = 0;
+ virtual void UnregisterBipServer() = 0;
virtual bool ConnectDevice(const RawAddress& bdaddr) = 0;
virtual bool DisconnectDevice(const RawAddress& bdaddr) = 0;
+ virtual void SetBipClientStatus(const RawAddress& bdaddr, bool connected) = 0;
virtual bool Cleanup() = 0;
protected:
@@ -185,4 +188,4 @@ class ServiceInterface {
};
} // namespace avrcp
-} // namespace bluetooth \ No newline at end of file
+} // namespace bluetooth