From a80ba425277b3362555768768557db6228dc5816 Mon Sep 17 00:00:00 2001 From: Jean-Marc Valin Date: Wed, 2 Feb 2011 18:17:34 -0500 Subject: SILK update (fixing segfault) and MSVS fix --- silk | 2 +- src/opus_decoder.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/silk b/silk index e99896eb..dcb28521 160000 --- a/silk +++ b/silk @@ -1 +1 @@ -Subproject commit e99896ebe5eaf57d2590fa2d6b653b4ee94d4b81 +Subproject commit dcb285211683d7e6d7ee7f47a7c556239f91c231 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 */ -- cgit v1.2.3