Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy B. Terriberry <tterribe@xiph.org>2013-05-20 07:52:55 +0400
committerTimothy B. Terriberry <tterribe@xiph.org>2013-05-20 07:52:55 +0400
commit9880c4cdebf7e4db5616546e801749d36fdd7202 (patch)
treec497fb90c4ba41f5d53a374eb513515a18f6d580 /silk/macros.h
parent41ce6e353d9a97891db591fac6ecb079f04d9828 (diff)
Fix bustage in a16cef62.
Diffstat (limited to 'silk/macros.h')
-rw-r--r--silk/macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/silk/macros.h b/silk/macros.h
index 5161b390..c477dfa9 100644
--- a/silk/macros.h
+++ b/silk/macros.h
@@ -85,7 +85,7 @@ static inline opus_int32 silk_CLZ16(opus_int16 in16)
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 */