diff options
author | Jean-Marc Valin <jean-marc.valin@octasic.com> | 2011-02-02 18:17:34 -0500 |
---|---|---|
committer | Jean-Marc Valin <jean-marc.valin@octasic.com> | 2011-02-02 18:17:34 -0500 |
commit | a80ba425277b3362555768768557db6228dc5816 (patch) | |
tree | d8e6976529f91f4d085b9deeb245de2b8a6e6923 | |
parent | 1cf7799850842f85ef54e5f8f2d380116a0ba5bd (diff) | |
download | opus-a80ba425277b3362555768768557db6228dc5816.tar.gz |
SILK update (fixing segfault) and MSVS fix
m--------- | silk | 10 | ||||
-rw-r--r-- | src/opus_decoder.h | 2 |
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 */ |