diff options
Diffstat (limited to '')
-rw-r--r-- | src/decoder/flac_pcm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/decoder/flac_pcm.h b/src/decoder/flac_pcm.h index dca9d6824..4d7a51c4d 100644 --- a/src/decoder/flac_pcm.h +++ b/src/decoder/flac_pcm.h @@ -20,11 +20,13 @@ #ifndef MPD_FLAC_PCM_H #define MPD_FLAC_PCM_H +#include "audio_format.h" + #include <FLAC/ordinals.h> void flac_convert(void *dest, - unsigned int num_channels, unsigned sample_format, + unsigned int num_channels, enum sample_format sample_format, const FLAC__int32 *const buf[], unsigned int position, unsigned int end); |