From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> --- android/avrcp-lib.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/android/avrcp-lib.c b/android/avrcp-lib.c index ad551cd..f6bcbdf 100644 --- a/android/avrcp-lib.c +++ b/android/avrcp-lib.c @@ -411,6 +411,27 @@ static ssize_t get_value_text(struct avrcp *session, uint8_t transaction, player->user_data); } +static ssize_t get_value(struct avrcp *session, uint8_t transaction, + uint16_t params_len, uint8_t *params, + void *user_data) +{ + struct avrcp_player *player = user_data; + + DBG(""); + + if (!params || params_len < 1 + params[0]) + return -EINVAL; + + if (!check_attributes(params[0], ¶ms[1])) + return -EINVAL; + + if (!player->ind || !player->ind->get_value) + return -ENOSYS; + + return player->ind->get_value(session, transaction, params[0], + ¶ms[1], player->user_data); +} + static const struct avrcp_control_handler player_handlers[] = { { AVRCP_GET_CAPABILITIES, AVC_CTYPE_STATUS, AVC_CTYPE_STABLE, @@ -427,6 +448,9 @@ static const struct avrcp_control_handler player_handlers[] = { { AVRCP_GET_PLAYER_VALUE_TEXT, AVC_CTYPE_STATUS, AVC_CTYPE_STABLE, get_value_text }, + { AVRCP_GET_CURRENT_PLAYER_VALUE, + AVC_CTYPE_STATUS, AVC_CTYPE_STABLE, + get_value }, { }, }; -- 1.8.5.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html