diff options
author | XANTRONIX Development | 2022-02-03 11:58:26 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-02-03 11:58:26 -0500 |
commit | 2ed5cd82a9e5faaf6137a416674f3ea3542e8d9d (patch) | |
tree | 76a7b31b34ce7cc35ae8d68ac2b5deedd1497b06 /include/xas | |
parent | 7f52b9c23cb6e70c90cd01316f4a703962c3f92f (diff) | |
download | xas-2ed5cd82a9e5faaf6137a416674f3ea3542e8d9d.tar.gz xas-2ed5cd82a9e5faaf6137a416674f3ea3542e8d9d.tar.bz2 xas-2ed5cd82a9e5faaf6137a416674f3ea3542e8d9d.zip |
Shorten he name of XAS_AUDIO_ constants
Diffstat (limited to 'include/xas')
-rw-r--r-- | include/xas/audio.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/xas/audio.h b/include/xas/audio.h index 8d4469d..5a92a50 100644 --- a/include/xas/audio.h +++ b/include/xas/audio.h @@ -4,11 +4,11 @@ #include <stdint.h> #include <sys/types.h> -#define XAS_AUDIO_STREAM_PCM_8_BIT 1 -#define XAS_AUDIO_STREAM_PCM_16_BIT 2 +#define XAS_AUDIO_PCM_8_BIT 1 +#define XAS_AUDIO_PCM_16_BIT 2 -#define XAS_AUDIO_STREAM_MONO 1 -#define XAS_AUDIO_STREAM_STEREO 2 +#define XAS_AUDIO_MONO 1 +#define XAS_AUDIO_STEREO 2 enum xas_audio_stream_type { XAS_AUDIO_STREAM_SINK, |