From: Vlad Pruteanu Date: Tue, 12 Sep 2023 06:55:26 +0000 (+0300) Subject: bap: Use defer setup when syncing to a BIS source X-Git-Tag: accepted/tizen/unified/20240117.163238~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8289065ddf0ee36ca0e405da7732b6581f8fffe;p=platform%2Fupstream%2Fbluez.git bap: Use defer setup when syncing to a BIS source This commit uses the newly added bt_io_bcast_accept function from btio.c to implement the defer setup for the BIS sync process. Now, information from the BIG Info advertising report can be used when sending the BIG Create Sync command. --- diff --git a/profiles/audio/bap.c b/profiles/audio/bap.c index b408578..cd128d4 100644 --- a/profiles/audio/bap.c +++ b/profiles/audio/bap.c @@ -842,6 +842,19 @@ drop: } +static void iso_pa_sync_confirm_cb(GIOChannel *io, void *user_data) +{ + GError *err = NULL; + + if (!bt_io_bcast_accept(io, iso_bcast_confirm_cb, + user_data, NULL, &err)) { + error("bt_io_bcast_accept: %s", err->message); + g_error_free(err); + g_io_channel_shutdown(io, TRUE, NULL); + } + +} + static bool match_data_bap_data(const void *data, const void *match_data) { const struct bap_data *bdata = data; @@ -1589,7 +1602,7 @@ static void bap_listen_io_broadcast(struct bap_data *data, struct bap_ep *ep, if (bt_bap_stream_get_io(stream) || data->listen_io) return; - io = bt_io_listen(iso_bcast_confirm_cb, NULL, ep->data, NULL, &err, + io = bt_io_listen(NULL, iso_pa_sync_confirm_cb, ep->data, NULL, &err, BT_IO_OPT_SOURCE_BDADDR, btd_adapter_get_address(ep->data->adapter), BT_IO_OPT_DEST_BDADDR,