ref: 5ebed3e8610988bda027b59552dd8776c1dff8e2
parent: c0856b98ccec175a8dd211f6c64bb2b64ee161e7
author: Yaowu Xu <yaowu@google.com>
date: Thu Jan 30 06:48:16 EST 2014
Replace inline with INLINE So x86_64-win64-vs11 can build successfully. Change-Id: If354c2ea3921fac8c9b413ed39223e70bc20c535
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -2480,10 +2480,10 @@
mbmi->sb_type = bsize;
mbmi->segment_id = 0;
}
-static inline int get_block_row(int b32i, int b16i, int b8i) {
+static INLINE int get_block_row(int b32i, int b16i, int b8i) {
return ((b32i >> 1) << 2) + ((b16i >> 1) << 1) + (b8i >> 1);
}
-static inline int get_block_col(int b32i, int b16i, int b8i) {
+static INLINE int get_block_col(int b32i, int b16i, int b8i) {
return ((b32i & 1) << 2) + ((b16i & 1) << 1) + (b8i & 1);
}
static void rtc_use_partition(VP9_COMP *cpi,
--
⑨