summaryrefslogtreecommitdiff
path: root/monitor/avctp.c
diff options
context:
space:
mode:
authorVikrampal Yadav <vikram.pal@samsung.com>2014-08-26 19:50:49 +0530
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-09-05 13:16:43 +0300
commit3e45317f7475d76372f3452ad1653c9a18c9a0f8 (patch)
tree3da2f6cd6d2e0f5d67d574c1ca886a0a44d9fe7b /monitor/avctp.c
parent40d016c1f06ebdcc92b53ddb482e96224649086a (diff)
downloadbluez-3e45317f7475d76372f3452ad1653c9a18c9a0f8.tar.gz
monitor: Add AVRCP SetPlayerApplicationSettingValue support
Support for decoding AVRCP SetPlayerApplicationSettingValue added in Bluetooth monitor.
Diffstat (limited to 'monitor/avctp.c')
-rw-r--r--monitor/avctp.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/monitor/avctp.c b/monitor/avctp.c
index c46238169..4876baeb7 100644
--- a/monitor/avctp.c
+++ b/monitor/avctp.c
@@ -657,6 +657,38 @@ response:
return true;
}
+static bool avrcp_set_player_value(struct l2cap_frame *frame, uint8_t ctype,
+ uint8_t len, uint8_t indent)
+{
+ uint8_t num;
+
+ if (ctype > AVC_CTYPE_GENERAL_INQUIRY)
+ return true;
+
+ if (!l2cap_frame_get_u8(frame, &num))
+ return false;
+
+ print_field("%*cAttributeCount: 0x%02x", (indent - 8), ' ', num);
+
+ for (; num > 0; num--) {
+ uint8_t attr, value;
+
+ if (!l2cap_frame_get_u8(frame, &attr))
+ return false;
+
+ print_field("%*cAttributeID: 0x%02x (%s)", (indent - 8), ' ',
+ attr, attr2str(attr));
+
+ if (!l2cap_frame_get_u8(frame, &value))
+ return false;
+
+ print_field("%*cValueID: 0x%02x (%s)", (indent - 8), ' ',
+ value, value2str(attr, value));
+ }
+
+ return true;
+}
+
struct avrcp_ctrl_pdu_data {
uint8_t pduid;
bool (*func) (struct l2cap_frame *frame, uint8_t ctype, uint8_t len,
@@ -668,6 +700,7 @@ static const struct avrcp_ctrl_pdu_data avrcp_ctrl_pdu_table[] = {
{ 0x11, avrcp_list_player_attributes },
{ 0x12, avrcp_list_player_values },
{ 0x13, avrcp_get_current_player_value },
+ { 0x14, avrcp_set_player_value },
{ }
};