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

github.com/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@octasic.com>2011-02-03 02:17:34 +0300
committerJean-Marc Valin <jean-marc.valin@octasic.com>2011-02-03 02:17:34 +0300
commita80ba425277b3362555768768557db6228dc5816 (patch)
treed8e6976529f91f4d085b9deeb245de2b8a6e6923
parent1cf7799850842f85ef54e5f8f2d380116a0ba5bd (diff)
SILK update (fixing segfault) and MSVS fix
m---------silk10
-rw-r--r--src/opus_decoder.h2
2 files changed, 6 insertions, 6 deletions
diff --git a/silk b/silk
-Subproject e99896ebe5eaf57d2590fa2d6b653b4ee94d4b8
+Subproject dcb285211683d7e6d7ee7f47a7c556239f91c23
diff --git a/src/opus_decoder.h b/src/opus_decoder.h
index 875bb3c2..8086b904 100644
--- a/src/opus_decoder.h
+++ b/src/opus_decoder.h
@@ -50,7 +50,7 @@ struct OpusDecoder {
inline short ADD_SAT16(a, b) {
int sum = a + b;
return sum > 32767 ? 32767 : sum < -32768 ? -32768 : (short)sum;
-}
+};
#endif /* OPUS_DECODER_H */