diff --git a/src/audio_format.h b/src/audio_format.h index 1a54a092a..6e4f94b71 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; } /**