diff options
author | AnubhavGupta <anubhavg@codeaurora.org> | 2015-04-14 18:37:45 +0530 |
---|---|---|
committer | Linux Build Service Account <lnxbuild@localhost> | 2015-10-06 03:21:52 -0600 |
commit | c0f2898de4248bbd254acedf97be16170b87b544 (patch) | |
tree | e3d962c4f09ce474e4c7f49faf75ea16483657bd /stack/avrc/avrc_utils.c | |
parent | 2626f0a4260c37742db898539b91f04cb758cc66 (diff) | |
download | android_system_bt-c0f2898de4248bbd254acedf97be16170b87b544.tar.gz android_system_bt-c0f2898de4248bbd254acedf97be16170b87b544.tar.bz2 android_system_bt-c0f2898de4248bbd254acedf97be16170b87b544.zip |
Bluetooth: Support for Avrcp 1.3 Controller
- support for SDP registration
- support for sending vendor dependant commands
- support for abs vol
- support for receiving vendor dependant response
- serialization of connection and rc_features callback
Change-Id: I108b270b2f7a1c2a035ac2e4811639238455b367
Diffstat (limited to 'stack/avrc/avrc_utils.c')
-rw-r--r-- | stack/avrc/avrc_utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stack/avrc/avrc_utils.c b/stack/avrc/avrc_utils.c index 9c9082f79..5656da713 100644 --- a/stack/avrc/avrc_utils.c +++ b/stack/avrc/avrc_utils.c @@ -61,6 +61,7 @@ BOOLEAN AVRC_IsValidAvcType(UINT8 pdu_id, UINT8 avc_type) case AVRC_PDU_ABORT_CONTINUATION_RSP: /* 0x41 */ case AVRC_PDU_SET_ADDRESSED_PLAYER: case AVRC_PDU_PLAY_ITEM: + case AVRC_PDU_SET_ABSOLUTE_VOLUME: if (avc_type == AVRC_CMD_CTRL) result=TRUE; break; |