ref: a80ba425277b3362555768768557db6228dc5816
parent: 1cf7799850842f85ef54e5f8f2d380116a0ba5bd
author: Jean-Marc Valin <[email protected]>
date: Wed Feb 2 13:17:34 EST 2011
SILK update (fixing segfault) and MSVS fix
--- a/src/opus_decoder.h
+++ b/src/opus_decoder.h
@@ -50,7 +50,7 @@
inline short ADD_SAT16(a, b) {
int sum = a + b;
return sum > 32767 ? 32767 : sum < -32768 ? -32768 : (short)sum;
-}
+};
#endif /* OPUS_DECODER_H */