2022-01-08 00:23:45 +08:00
|
|
|
/* Bluetooth Audio Unicast Server */
|
|
|
|
|
|
|
|
/*
|
2023-02-20 21:33:43 +08:00
|
|
|
* Copyright (c) 2021-2023 Nordic Semiconductor ASA
|
2022-01-08 00:23:45 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2022-05-06 17:12:04 +08:00
|
|
|
#include <zephyr/bluetooth/audio/audio.h>
|
2023-02-20 22:17:18 +08:00
|
|
|
#include <zephyr/bluetooth/audio/bap.h>
|
2022-01-08 00:23:45 +08:00
|
|
|
|
2023-05-16 20:16:14 +08:00
|
|
|
int bt_bap_unicast_server_reconfig(struct bt_bap_stream *stream,
|
|
|
|
const struct bt_audio_codec_cfg *codec_cfg);
|
2023-02-27 22:32:52 +08:00
|
|
|
int bt_bap_unicast_server_start(struct bt_bap_stream *stream);
|
2023-05-22 21:08:57 +08:00
|
|
|
int bt_bap_unicast_server_metadata(struct bt_bap_stream *stream, const uint8_t meta[],
|
|
|
|
size_t meta_len);
|
2023-02-27 22:32:52 +08:00
|
|
|
int bt_bap_unicast_server_disable(struct bt_bap_stream *stream);
|
|
|
|
int bt_bap_unicast_server_release(struct bt_bap_stream *stream);
|