From 1fe063a6d66048e6f95d1f60a7d7f837799cefe7 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Tue, 15 Feb 2022 20:52:32 -0500 Subject: Implement xas_audio_stream_buffer() Implement xas_audio_stream_buffer() to return the input/output buffer associated with an audio stream --- include/xas/audio.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/xas') diff --git a/include/xas/audio.h b/include/xas/audio.h index ab6bce4..3a9ab69 100644 --- a/include/xas/audio.h +++ b/include/xas/audio.h @@ -84,6 +84,8 @@ xas_audio_stream *xas_audio_stream_new_source(xas_audio_fill fill, void xas_audio_stream_destroy(xas_audio_stream *stream); +void *xas_audio_stream_buffer(xas_audio_stream *stream); + ssize_t xas_audio_stream_write(xas_audio_stream *stream, void *samples, size_t count); -- cgit v1.2.3