diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-07-08 10:46:15 -0300 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-07-09 17:41:31 +0200 |
commit | 3f221e2edb3bebe3806c4a7f5490ba92ed99c101 (patch) | |
tree | 90a396a27942fe567b297914474bbd449aeb7ceb /src/decoder | |
parent | 848ed1478866e4d99c10aa962a6d976a6b989536 (diff) | |
download | mpd-3f221e2edb3bebe3806c4a7f5490ba92ed99c101.tar.gz mpd-3f221e2edb3bebe3806c4a7f5490ba92ed99c101.tar.xz mpd-3f221e2edb3bebe3806c4a7f5490ba92ed99c101.zip |
decoder/AudiofileDecoderPlugin: fix build failure due to missing stdio.h include
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/AudiofileDecoderPlugin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/decoder/AudiofileDecoderPlugin.cxx b/src/decoder/AudiofileDecoderPlugin.cxx index ab3557e52..92223f214 100644 --- a/src/decoder/AudiofileDecoderPlugin.cxx +++ b/src/decoder/AudiofileDecoderPlugin.cxx @@ -31,6 +31,7 @@ #include <af_vfs.h> #include <assert.h> +#include <stdio.h> /* pick 1020 since its devisible for 8,16,24, and 32-bit audio */ #define CHUNK_SIZE 1020 |