From dfd8fa85a1666ab4c20b55701bc6266c32f33c0e Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 31 Aug 2015 15:02:37 +0300 Subject: [PATCH] audio/avrcp: Fix not listing all players To list the available player GetFolderItems with scope 0x00 is used but the code currently don't set the range which means only the first player is returned. --- profiles/audio/avrcp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiles/audio/avrcp.c b/profiles/audio/avrcp.c index d2b006539..48c302a24 100644 --- a/profiles/audio/avrcp.c +++ b/profiles/audio/avrcp.c @@ -3247,6 +3247,8 @@ static void avrcp_get_media_player_list(struct avrcp *session) memset(buf, 0, sizeof(buf)); pdu->pdu_id = AVRCP_GET_FOLDER_ITEMS; + put_be32(0, &pdu->params[1]); + put_be32(UINT32_MAX, &pdu->params[5]); pdu->param_len = htons(10); avctp_send_browsing_req(session->conn, buf, sizeof(buf), -- 2.47.3