[FFmpeg-cvslog] r13452 - trunk/libavcodec/ac3dec.c

jbr subversion
Tue May 27 02:43:39 CEST 2008


Author: jbr
Date: Tue May 27 02:43:39 2008
New Revision: 13452

Log:
zero the upper frequencies of the correct coefficients

Modified:
   trunk/libavcodec/ac3dec.c

Modified: trunk/libavcodec/ac3dec.c
==============================================================================
--- trunk/libavcodec/ac3dec.c	(original)
+++ trunk/libavcodec/ac3dec.c	Tue May 27 02:43:39 2008
@@ -604,7 +604,7 @@ static int get_transform_coeffs(AC3Decod
             end = s->end_freq[ch];
         }
         do
-            s->transform_coeffs[ch][end] = 0;
+            s->fixed_coeffs[ch][end] = 0;
         while(++end < 256);
     }
 




More information about the ffmpeg-cvslog mailing list