shithub: opus

Download patch

ref: 9880c4cdebf7e4db5616546e801749d36fdd7202
parent: 41ce6e353d9a97891db591fac6ecb079f04d9828
author: Timothy B. Terriberry <[email protected]>
date: Sun May 19 16:52:55 EDT 2013

Fix bustage in a16cef62.

--- a/silk/macros.h
+++ b/silk/macros.h
@@ -85,7 +85,7 @@
 
 static inline opus_int32 silk_CLZ32(opus_int32 in32)
 {
-    return in32 ? 32 - EC_ILOG(in32) : 0;
+    return in32 ? 32 - EC_ILOG(in32) : 32;
 }
 
 /* Row based */