shithub: libvpx

Download patch

ref: 352db1d1341ffc7af741cd4b823e7f71a1fb1b3b
parent: 59ff7c68985a96133a8ea129159bada12f10bef6
parent: 3c790ec0f83c527b479e968c7a093ed2bbd783c1
author: Jim Bankoski <jimbankoski@google.com>
date: Mon Feb 10 06:35:12 EST 2014

Merge "Convert small static header functions to inline"

--- 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