SILK update (fixing segfault) and MSVS fix
diff --git a/src/opus_decoder.h b/src/opus_decoder.h
index 875bb3c..8086b90 100644
--- 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 */