From aac73df1a7b2e84e1930fa63ac6d7983cfdba543 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Wed, 6 Feb 2013 12:45:28 -0800 Subject: Use configure checks for various inline keywords. Change-Id: I8508f1a3d3430f998bb9295f849e88e626a52a24 --- vp9/encoder/vp9_dct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vp9/encoder/vp9_dct.c') diff --git a/vp9/encoder/vp9_dct.c b/vp9/encoder/vp9_dct.c index fbbea9aa0..dcd19ca42 100644 --- a/vp9/encoder/vp9_dct.c +++ b/vp9/encoder/vp9_dct.c @@ -763,7 +763,7 @@ static const int cospi_29_64 = 2404; static const int cospi_30_64 = 1606; static const int cospi_31_64 = 804; -static inline int dct_const_round_shift(int input) { +static INLINE int dct_const_round_shift(int input) { int rv = (input + DCT_CONST_ROUNDING) >> DCT_CONST_BITS; assert((rv <= INT16_MAX) && (rv >= INT16_MIN)); return rv; -- cgit v1.2.3