shithub: opus

Download patch

ref: 9a7967a1eaae389c9d2323485fe33366d03cdbbc
parent: ea259d67476a5d3d5526378bbc59b53dec807534
author: Jean-Marc Valin <[email protected]>
date: Fri May 20 18:54:20 EDT 2011

s/inline/static inline/

--- a/src/opus_decoder.h
+++ b/src/opus_decoder.h
@@ -50,7 +50,7 @@
 #endif
 };
 
-inline short SAT16(int x) {
+static inline short SAT16(int x) {
     return x > 32767 ? 32767 : x < -32768 ? -32768 : (short)x;
 };