1 /*
2  * Copyright (c) 2024 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/bluetooth/audio/bap.h>
8 #include <zephyr/bluetooth/iso.h>
9 #include <zephyr/net_buf.h>
10 
11 void bap_stream_rx_recv_cb(struct bt_bap_stream *stream, const struct bt_iso_recv_info *info,
12 			   struct net_buf *buf);
13 
14 /**
15  * @brief Test if the provided stream has been configured for RX
16  *
17  * @param bap_stream The stream to test for RX support
18  *
19  * @returns true if it has been configured for RX, and false if not
20  */
21 bool bap_stream_rx_can_recv(const struct bt_bap_stream *stream);
22