summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_dct.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2013-02-06 12:45:28 -0800
committerRonald S. Bultje <rbultje@google.com>2013-02-06 16:12:56 -0800
commitaac73df1a7b2e84e1930fa63ac6d7983cfdba543 (patch)
treec9bf85c7aabdde05d3f8e221605fc4ec84c7e86c /vp9/encoder/vp9_dct.c
parenta788e0fe63e90dca31c67c6ddc21658f86d8a49a (diff)
downloadlibvpx-aac73df1a7b2e84e1930fa63ac6d7983cfdba543.tar
libvpx-aac73df1a7b2e84e1930fa63ac6d7983cfdba543.tar.gz
libvpx-aac73df1a7b2e84e1930fa63ac6d7983cfdba543.tar.bz2
libvpx-aac73df1a7b2e84e1930fa63ac6d7983cfdba543.zip
Use configure checks for various inline keywords.
Change-Id: I8508f1a3d3430f998bb9295f849e88e626a52a24
Diffstat (limited to 'vp9/encoder/vp9_dct.c')
-rw-r--r--vp9/encoder/vp9_dct.c2
1 files changed, 1 insertions, 1 deletions
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;