diff options
Diffstat (limited to 'src/audio_format.h')
-rw-r--r-- | src/audio_format.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_format.h b/src/audio_format.h index 92d11e9db..a87aac383 100644 --- a/src/audio_format.h +++ b/src/audio_format.h @@ -59,7 +59,7 @@ audio_valid_sample_rate(unsigned sample_rate) static inline bool audio_valid_sample_format(unsigned bits) { - return bits == 16 || bits == 24 || bits == 8; + return bits == 16 || bits == 24 || bits == 32 || bits == 8; } /** |