summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/codecs/libwma/wmadeci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c
index 7eefa0310d..ecde2fd034 100644
--- a/apps/codecs/libwma/wmadeci.c
+++ b/apps/codecs/libwma/wmadeci.c
@@ -1428,7 +1428,7 @@ static int wma_decode_block(WMADecodeContext *s)
1428 e2 = 0; 1428 e2 = 0;
1429 for(i = 0;i < n; ++i) 1429 for(i = 0;i < n; ++i)
1430 { 1430 {
1431 v = exp_ptr[i]; 1431 v = exp_ptr[i]>>5; /*v is noramlized later on so its fixed format is irrelevant*/
1432 e2 += fixmul32(v, v); 1432 e2 += fixmul32(v, v);
1433 } 1433 }
1434 exp_power[j] = e2/n; /*n is an int...*/ 1434 exp_power[j] = e2/n; /*n is an int...*/