Commit f77cd632 authored by Max Kellermann's avatar Max Kellermann

audio_format: add constant MAX_CHANNELS

To be used in fixed-size arrays.
parent 2378c2d7
...@@ -44,6 +44,8 @@ enum sample_format { ...@@ -44,6 +44,8 @@ enum sample_format {
SAMPLE_FORMAT_S32, SAMPLE_FORMAT_S32,
}; };
static const unsigned MAX_CHANNELS = 8;
/** /**
* This structure describes the format of a raw PCM stream. * This structure describes the format of a raw PCM stream.
*/ */
...@@ -180,7 +182,7 @@ audio_valid_sample_format(enum sample_format format) ...@@ -180,7 +182,7 @@ audio_valid_sample_format(enum sample_format format)
static inline bool static inline bool
audio_valid_channel_count(unsigned channels) audio_valid_channel_count(unsigned channels)
{ {
return channels >= 1 && channels <= 8; return channels >= 1 && channels <= MAX_CHANNELS;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment