From b36f7cd78806c2738bcdf727d6d97f473f42f80e Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 21 Jan 2016 15:06:47 +0200 Subject: audio/avrcp: Fix not always requesting capabilities This fixes not requesting capabilities of targets that are not player category, instead just make the creation of the player object conditional to the category 1 so that GetCapabities is still sent in order to fetch the supported events which might be still useful even without a player. --- profiles/audio/avrcp.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/profiles/audio/avrcp.c b/profiles/audio/avrcp.c index 68cc67753..0c3a761b2 100644 --- a/profiles/audio/avrcp.c +++ b/profiles/audio/avrcp.c @@ -3883,12 +3883,11 @@ static void controller_init(struct avrcp *session) btd_service_connecting_complete(service, 0); /* Only create player if category 1 is supported */ - if (!(controller->features & AVRCP_FEATURE_CATEGORY_1)) - return; - - player = create_ct_player(session, 0); - if (player == NULL) - return; + if (controller->features & AVRCP_FEATURE_CATEGORY_1) { + player = create_ct_player(session, 0); + if (player == NULL) + return; + } if (controller->version < 0x0103) return; -- cgit v1.2.1