From: Dmitry Kovalev Date: Thu, 27 Feb 2014 23:35:38 +0000 (-0800) Subject: Fixing include order in vp9_ratectrl.c. X-Git-Tag: v1.4.0~2226^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b7addcc103baf320d7d0f548245123c79f4c4fc;p=platform%2Fupstream%2Flibvpx.git Fixing include order in vp9_ratectrl.c. Change-Id: Id1ec41275cc35565e522a1b2ac252ea3ec05638f --- diff --git a/vp9/encoder/vp9_ratectrl.c b/vp9/encoder/vp9_ratectrl.c index dc6c118..89aa821 100644 --- a/vp9/encoder/vp9_ratectrl.c +++ b/vp9/encoder/vp9_ratectrl.c @@ -8,23 +8,24 @@ * be found in the AUTHORS file in the root of the source tree. */ - -#include -#include -#include -#include #include +#include #include +#include +#include +#include + +#include "vpx_mem/vpx_mem.h" #include "vp9/common/vp9_alloccommon.h" #include "vp9/common/vp9_common.h" -#include "vp9/encoder/vp9_ratectrl.h" #include "vp9/common/vp9_entropymode.h" -#include "vpx_mem/vpx_mem.h" -#include "vp9/common/vp9_systemdependent.h" -#include "vp9/encoder/vp9_encodemv.h" #include "vp9/common/vp9_quant_common.h" #include "vp9/common/vp9_seg_common.h" +#include "vp9/common/vp9_systemdependent.h" + +#include "vp9/encoder/vp9_encodemv.h" +#include "vp9/encoder/vp9_ratectrl.h" #define LIMIT_QRANGE_FOR_ALTREF_AND_KEY 1