diff options
author | XANTRONIX Development | 2022-03-17 11:35:24 -0400 |
---|---|---|
committer | XANTRONIX Development | 2022-03-17 11:35:24 -0400 |
commit | cc27bca6d8d70bf23b17c92aa1e2b28644b51844 (patch) | |
tree | eaf4f1752013ef9ff7e7d48d287f6313e673e7c2 /include/xas | |
parent | 9708b5b0e2b5de0e60fb6b0ef7925bc9375b85cf (diff) | |
download | xas-cc27bca6d8d70bf23b17c92aa1e2b28644b51844.tar.gz xas-cc27bca6d8d70bf23b17c92aa1e2b28644b51844.tar.bz2 xas-cc27bca6d8d70bf23b17c92aa1e2b28644b51844.zip |
Implement xas_audio_format_mono()
Implement xas_audio_format_mono() to return a new audio format
descriptor for a given input, but in mono, as a convenience
Diffstat (limited to 'include/xas')
-rw-r--r-- | include/xas/audio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/xas/audio.h b/include/xas/audio.h index 343986d..76d38ce 100644 --- a/include/xas/audio.h +++ b/include/xas/audio.h @@ -53,6 +53,8 @@ struct _xas_audio_stream { int xas_audio_format_eq(xas_audio_format a, xas_audio_format b); +xas_audio_format xas_audio_format_mono(xas_audio_format format); + void xas_audio_zero(xas_audio_format format, void *dest, size_t index, |