Add support for the reconfigure procedure for the unicast server. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
21 lines
687 B
C
21 lines
687 B
C
/* Bluetooth Audio Unicast Server */
|
|
|
|
/*
|
|
* Copyright (c) 2021-2022 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/bluetooth/audio/audio.h>
|
|
|
|
extern const struct bt_audio_unicast_server_cb *unicast_server_cb;
|
|
|
|
int bt_unicast_server_reconfig(struct bt_audio_stream *stream,
|
|
const struct bt_codec *codec);
|
|
int bt_unicast_server_start(struct bt_audio_stream *stream);
|
|
int bt_unicast_server_metadata(struct bt_audio_stream *stream,
|
|
struct bt_codec_data meta[],
|
|
size_t meta_count);
|
|
int bt_unicast_server_disable(struct bt_audio_stream *stream);
|
|
int bt_unicast_server_release(struct bt_audio_stream *stream, bool cache);
|