Add missing capability for TrackReachedEnd. --- audio/avrcp.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/audio/avrcp.c b/audio/avrcp.c index 8eba046..6eb4bb1 100644 --- a/audio/avrcp.c +++ b/audio/avrcp.c @@ -557,12 +557,13 @@ static uint8_t avrcp_handle_get_capabilities(struct avrcp_player *player, return AVC_CTYPE_STABLE; case CAP_EVENTS_SUPPORTED: - pdu->params_len = htons(5); - pdu->params[1] = 3; + pdu->params[1] = 4; pdu->params[2] = AVRCP_EVENT_STATUS_CHANGED; pdu->params[3] = AVRCP_EVENT_TRACK_CHANGED; pdu->params[4] = AVRCP_EVENT_TRACK_REACHED_START; + pdu->params[5] = AVRCP_EVENT_TRACK_REACHED_END; + pdu->params_len = htons(2 + pdu->params[1]); return AVC_CTYPE_STABLE; } -- on behalf of ST-Ericsson -- 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