From bb13591c4301e6c67dd4985fac95e680f4017400 Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Sat, 11 Feb 2017 06:59:03 +0100 Subject: [PATCH] Fix x86 build config.h must be included first. Fixes 0ff22a16f ("decoder/ffmpeg: move code to lib/ffmpeg/Time.hxx") Signed-off-by: Olaf Hering --- src/decoder/plugins/FfmpegDecoderPlugin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decoder/plugins/FfmpegDecoderPlugin.cxx b/src/decoder/plugins/FfmpegDecoderPlugin.cxx index e5787bf097..05afc363b8 100644 --- a/src/decoder/plugins/FfmpegDecoderPlugin.cxx +++ b/src/decoder/plugins/FfmpegDecoderPlugin.cxx @@ -20,8 +20,8 @@ /* necessary because libavutil/common.h uses UINT64_C */ #define __STDC_CONSTANT_MACROS -#include "lib/ffmpeg/Time.hxx" #include "config.h" +#include "lib/ffmpeg/Time.hxx" #include "FfmpegDecoderPlugin.hxx" #include "lib/ffmpeg/Domain.hxx" #include "lib/ffmpeg/Error.hxx"