Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2011-05-21 06:54:20 +0400
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2011-05-21 06:54:20 +0400
commit9a7967a1eaae389c9d2323485fe33366d03cdbbc (patch)
treef67e16ec52a345bf5ebb529ba7c61f43e9d3e051
parentea259d67476a5d3d5526378bbc59b53dec807534 (diff)
s/inline/static inline/
-rw-r--r--src/opus_decoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opus_decoder.h b/src/opus_decoder.h
index b198d823..cdee2a43 100644
--- a/src/opus_decoder.h
+++ b/src/opus_decoder.h
@@ -50,7 +50,7 @@ struct OpusDecoder {
#endif
};
-inline short SAT16(int x) {
+static inline short SAT16(int x) {
return x > 32767 ? 32767 : x < -32768 ? -32768 : (short)x;
};