diff ac3dec.c @ 6906:86e3dce7f723 libavcodec

zero the upper frequencies of the correct coefficients
author jbr
date Tue, 27 May 2008 00:43:39 +0000
parents ff5fd5a1abf5
children ec4e01cb0089
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);
     }