summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlib/rbcodec/codecs/libwma/wmadeci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/libwma/wmadeci.c b/lib/rbcodec/codecs/libwma/wmadeci.c
index 69bdbeaca2..56779ca517 100755
--- a/lib/rbcodec/codecs/libwma/wmadeci.c
+++ b/lib/rbcodec/codecs/libwma/wmadeci.c
@@ -495,7 +495,7 @@ int wma_decode_init(WMADecodeContext* s, asf_waveformatex_t *wfx)
495 s->noise_mult = 0x51f; 495 s->noise_mult = 0x51f;
496 /*unlikely, but we may have previoiusly used this table for LSP, 496 /*unlikely, but we may have previoiusly used this table for LSP,
497 so halve the values if needed*/ 497 so halve the values if needed*/
498 if(noisetable_exp[0] == 0x10) { 498 if(noisetable_exp[0] == 0x0a) {
499 for (i=0;i<NOISE_TAB_SIZE;++i) 499 for (i=0;i<NOISE_TAB_SIZE;++i)
500 noisetable_exp[i] >>= 1; 500 noisetable_exp[i] >>= 1;
501 } 501 }