ref: 3c790ec0f83c527b479e968c7a093ed2bbd783c1
parent: b5f59ea28094781127d67a1eceb54ea5c80d67d9
author: Jim Bankoski <jimbankoski@google.com>
date: Sun Feb 9 15:19:37 EST 2014
Convert small static header functions to inline Change-Id: I467b28346a0d8d4d8b96d6c05fc39c34eec26e5c
--- a/vp9/common/vp9_systemdependent.h
+++ b/vp9/common/vp9_systemdependent.h
@@ -34,7 +34,7 @@
#if defined(_MSC_VER) && _MSC_VER < 1800
// round is not defined in MSVC before VS2013.
-static int round(double x) {
+static INLINE int round(double x) {
if (x < 0)
return (int)ceil(x - 0.5);
else
--
⑨