changeset 6606:3c4822805c62 libavcodec

100l lost add_bias
author michael
date Wed, 16 Apr 2008 13:29:35 +0000
parents 075d1d2b49a2
children 86fb25de723e
files nellymoserdec.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/nellymoserdec.c	Wed Apr 16 13:28:13 2008 +0000
+++ b/nellymoserdec.c	Wed Apr 16 13:29:35 2008 +0000
@@ -121,8 +121,8 @@
     top2 = 2*NELLY_BUF_LEN-1;
 
     while (bot < NELLY_BUF_LEN/2) {
-        audio[bot] =  (- a_in[bot]*sine_window[bot]-state[bot]*sine_window[top])/s->scale_bias;
-        audio[top] =  (-state[bot]*sine_window[bot]+ a_in[bot]*sine_window[top])/s->scale_bias;
+        audio[bot] =  (- a_in[bot]*sine_window[bot]-state[bot]*sine_window[top])/s->scale_bias + s->add_bias;
+        audio[top] =  (-state[bot]*sine_window[bot]+ a_in[bot]*sine_window[top])/s->scale_bias + s->add_bias;
         state[bot] =  a_in[top2];
 
         bot++;