From b0b5ef76f81fdc66bd68cb68c6e95529b1a088e2 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 14 Jan 2014 12:42:46 +0200 Subject: [PATCH] audio/A2DP: Add implemention of SEP close confirmation --- android/a2dp.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/android/a2dp.c b/android/a2dp.c index 17f7a9fa7..146abd391 100644 --- a/android/a2dp.c +++ b/android/a2dp.c @@ -909,11 +909,26 @@ static void sep_suspend_cfm(struct avdtp *session, struct avdtp_local_sep *sep, setup_remove_by_id(endpoint->id); } +static void sep_close_cfm(struct avdtp *session, struct avdtp_local_sep *sep, + struct avdtp_stream *stream, struct avdtp_error *err, + void *user_data) +{ + struct a2dp_endpoint *endpoint = user_data; + + DBG(""); + + if (err) + return; + + setup_remove_by_id(endpoint->id); +} + static struct avdtp_sep_cfm sep_cfm = { .set_configuration = sep_setconf_cfm, .open = sep_open_cfm, .start = sep_start_cfm, .suspend = sep_suspend_cfm, + .close = sep_close_cfm, }; static uint8_t register_endpoint(const uint8_t *uuid, uint8_t codec, -- 2.47.3