diff options
author | wm4 <nfxjfg@googlemail.com> | 2015-04-13 19:17:59 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2015-04-14 12:32:10 +0200 |
commit | 2de7650451d90520135d8cf6f96caa0658824208 (patch) | |
tree | 1898751c97b2aea51ff6e7791f4d71cecaad9d3c /libavcodec | |
parent | 73dacabfc9b9ef1fd2c08105fdab6238ee29c2fc (diff) | |
download | ffmpeg-2de7650451d90520135d8cf6f96caa0658824208.tar.gz |
mmal: Move system headers before local headers
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mmaldec.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/mmaldec.c b/libavcodec/mmaldec.c index c59a496246..1f29d2b6b2 100644 --- a/libavcodec/mmaldec.c +++ b/libavcodec/mmaldec.c @@ -24,6 +24,12 @@ * MMAL Video Decoder */ +#include <bcm_host.h> +#include <interface/mmal/mmal.h> +#include <interface/mmal/util/mmal_util.h> +#include <interface/mmal/util/mmal_util_params.h> +#include <interface/mmal/util/mmal_default_components.h> + #include "avcodec.h" #include "internal.h" #include "libavutil/atomic.h" @@ -33,12 +39,6 @@ #include "libavutil/opt.h" #include "libavutil/log.h" -#include <bcm_host.h> -#include <interface/mmal/mmal.h> -#include <interface/mmal/util/mmal_util.h> -#include <interface/mmal/util/mmal_util_params.h> -#include <interface/mmal/util/mmal_default_components.h> - typedef struct FFBufferEntry { AVBufferRef *ref; void *data; |