diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/audio.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/audio.c b/src/audio.c index 561870f..1f20f3e 100644 --- a/src/audio.c +++ b/src/audio.c @@ -93,6 +93,10 @@ void xas_audio_stream_destroy(xas_audio_stream *stream) { free(stream); } +void *xas_audio_stream_buffer(xas_audio_stream *stream) { + return stream + 1; +} + static inline int stream_flush(xas_audio_stream *stream) { if (stream->buffer_count == 0) { return 0; |