changeset 6906:86e3dce7f723 libavcodec

zero the upper frequencies of the correct coefficients
author jbr
date Tue, 27 May 2008 00:43:39 +0000
parents d163c4f3f4ab
children 8b0db8b07a21
files ac3dec.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ac3dec.c	Mon May 26 23:36:05 2008 +0000
+++ b/ac3dec.c	Tue May 27 00:43:39 2008 +0000
@@ -604,7 +604,7 @@
             end = s->end_freq[ch];
         }
         do
-            s->transform_coeffs[ch][end] = 0;
+            s->fixed_coeffs[ch][end] = 0;
         while(++end < 256);
     }