1 /* Bluetooth Audio Unicast Server */ 2 3 /* 4 * Copyright (c) 2021-2023 Nordic Semiconductor ASA 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 */ 8 9 #include <stddef.h> 10 #include <stdint.h> 11 12 #include <zephyr/bluetooth/audio/audio.h> 13 #include <zephyr/bluetooth/audio/bap.h> 14 15 int bt_bap_unicast_server_reconfig(struct bt_bap_stream *stream, 16 const struct bt_audio_codec_cfg *codec_cfg); 17 int bt_bap_unicast_server_start(struct bt_bap_stream *stream); 18 int bt_bap_unicast_server_metadata(struct bt_bap_stream *stream, const uint8_t meta[], 19 size_t meta_len); 20 int bt_bap_unicast_server_disable(struct bt_bap_stream *stream); 21 int bt_bap_unicast_server_release(struct bt_bap_stream *stream); 22