From 6d58ab590116ca5c4690a0d11f81af4a514bb1e4 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 4 Mar 2014 16:49:40 +0200 Subject: [PATCH] android/hal-msg: Add possible AVRCP features This adds possible AVRCP features which can be passed to Remote Features notification. --- android/hal-msg.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/android/hal-msg.h b/android/hal-msg.h index dd25f6e04..e26ff7d10 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -1167,6 +1167,11 @@ struct hal_cmd_avrcp_set_volume { uint8_t value; } __attribute__((packed)); +#define HAL_AVRCP_FEATURE_NONE 0x00 +#define HAL_AVRCP_FEATURE_METADATA 0x01 +#define HAL_AVRCP_FEATURE_ABSOLUTE_VOLUME 0x02 +#define HAL_AVRCP_FEATURE_BROWSE 0x04 + #define HAL_EV_AVRCP_REMOTE_FEATURES 0x81 struct hal_ev_avrcp_remote_features { uint8_t bdaddr[6]; -- 2.47.3