diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-07-08 10:46:16 -0300 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-07-09 17:41:31 +0200 |
commit | a70443af319d5aa562c44a685ef753d117643fc0 (patch) | |
tree | a706b2dca966761bd721263653c82429326dd20f /src/decoder/OpusDecoderPlugin.cxx | |
parent | 3f221e2edb3bebe3806c4a7f5490ba92ed99c101 (diff) | |
download | mpd-a70443af319d5aa562c44a685ef753d117643fc0.tar.gz mpd-a70443af319d5aa562c44a685ef753d117643fc0.tar.xz mpd-a70443af319d5aa562c44a685ef753d117643fc0.zip |
decoder/OpusDecoderPlugin: fix build failure due to missing stdio.h include
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Diffstat (limited to 'src/decoder/OpusDecoderPlugin.cxx')
-rw-r--r-- | src/decoder/OpusDecoderPlugin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/decoder/OpusDecoderPlugin.cxx b/src/decoder/OpusDecoderPlugin.cxx index f3d7b342e..01ea3687a 100644 --- a/src/decoder/OpusDecoderPlugin.cxx +++ b/src/decoder/OpusDecoderPlugin.cxx @@ -40,6 +40,7 @@ #include <glib.h> #include <string.h> +#include <stdio.h> static constexpr opus_int32 opus_sample_rate = 48000; |