From 09e1154a36f692e9ad2cee5f47fc66459f2568a2 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Mon, 31 Jan 2022 16:51:52 -0500 Subject: deep sleep --- include/xas/audio.h | 6 ++++++ include/xas/mixer.h | 7 +------ 2 files changed, 7 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/xas/audio.h b/include/xas/audio.h index 8a7fe4e..76d1e68 100644 --- a/include/xas/audio.h +++ b/include/xas/audio.h @@ -4,6 +4,12 @@ #include #include +#define XAS_AUDIO_STREAM_PCM_8_BIT 1 +#define XAS_AUDIO_STREAM_PCM_16_BIT 2 + +#define XAS_AUDIO_STREAM_MONO 1 +#define XAS_AUDIO_STREAM_STEREO 2 + enum xas_audio_stream_type { XAS_AUDIO_STREAM_SINK, XAS_AUDIO_STREAM_SOURCE diff --git a/include/xas/mixer.h b/include/xas/mixer.h index 9fd77cb..ca60976 100644 --- a/include/xas/mixer.h +++ b/include/xas/mixer.h @@ -25,15 +25,10 @@ typedef struct _xas_mixer { size_t buffer_size; } xas_mixer; -xas_mixer *xas_mixer_new(size_t sample_size, - size_t sample_rate, - size_t channels, - size_t buffer_size); +xas_mixer *xas_mixer_new(xas_audio_stream *output); void xas_mixer_destroy(xas_mixer *mixer); -xas_audio_stream *xas_mixer_output(xas_mixer *mixer); - xas_mixer_input *xas_mixer_input_add(xas_mixer *mixer, xas_audio_stream *stream, float gain, -- cgit v1.2.3