#include <zephyr/net_buf.h>
#include <zephyr/types.h>
#include <stddef.h>
#include <stdbool.h>
#include <stdint.h>
#include <audio_defines.h>
Go to the source code of this file.
|
| int | contin_array_create (void *pcm_cont, uint32_t pcm_cont_size, void const *const pcm_finite, uint32_t pcm_finite_size, uint32_t *_finite_pos) |
| | Creates a continuous array from a finite array.
|
| |
| int | contin_array_buf_create (struct net_buf *pcm_contin, void const *const pcm_finite, uint16_t pcm_finite_size, uint32_t locations, uint16_t *const _finite_pos) |
| | Creates a continuous array in the locations in the net_buf of given in locations, from a single channel finite array.
|
| |
| int | contin_array_net_buf_create (struct net_buf *pcm_contin, struct net_buf const *const pcm_finite, uint32_t locations, uint16_t *const _finite_pos) |
| | Creates a continuous array in the locations in the net_buf as given in locations, from a single channel finite array in a net_buf.
|
| |