From f77cd63286bedbd995bed0e232498543e28d3957 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 4 Oct 2011 20:41:05 +0200 Subject: audio_format: add constant MAX_CHANNELS To be used in fixed-size arrays. --- src/audio_format.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/audio_format.h') diff --git a/src/audio_format.h b/src/audio_format.h index 1a54a092..6e4f94b7 100644 --- a/src/audio_format.h +++ b/src/audio_format.h @@ -44,6 +44,8 @@ enum sample_format { SAMPLE_FORMAT_S32, }; +static const unsigned MAX_CHANNELS = 8; + /** * This structure describes the format of a raw PCM stream. */ @@ -180,7 +182,7 @@ audio_valid_sample_format(enum sample_format format) static inline bool audio_valid_channel_count(unsigned channels) { - return channels >= 1 && channels <= 8; + return channels >= 1 && channels <= MAX_CHANNELS; } /** -- cgit v1.2.3