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