[FFmpeg-cvslog] r15023 - trunk/libavcodec/dca.c

michael subversion
Fri Aug 29 16:44:47 CEST 2008


Author: michael
Date: Fri Aug 29 16:44:47 2008
New Revision: 15023

Log:
Simplify (drop useless intermediate sum and diff arrays).


Modified:
   trunk/libavcodec/dca.c

Modified: trunk/libavcodec/dca.c
==============================================================================
--- trunk/libavcodec/dca.c	(original)
+++ trunk/libavcodec/dca.c	Fri Aug 29 16:44:47 2008
@@ -673,7 +673,7 @@ static void qmf_32_subbands(DCAContext *
 
     /* Reconstructed channel sample index */
     for (subindex = 0; subindex < 8; subindex++) {
-        float t1, t2, sum[16], diff[16];
+        float t1, t2;
 
         /* Load in one sample from each subband and clear inactive subbands */
         for (i = 0; i < s->subband_activity[chans]; i++)
@@ -690,17 +690,10 @@ static void qmf_32_subbands(DCAContext *
                 t1 += (raXin[2 * i] + raXin[2 * i + 1]) * cos_mod[j];
                 t2 += (raXin[2 * i] + raXin[2 * i - 1]) * cos_mod[j + 256];
             }
-            sum[k] = t1 + t2;
-            diff[k] = t1 - t2;
+            subband_fir_hist[   k  ] = cos_mod[k+512   ] * (t1 + t2);
+            subband_fir_hist[32-k-1] = cos_mod[k+512+16] * (t1 - t2);
         }
 
-        j = 512;
-        /* Store history */
-        for (k = 0; k < 16; k++)
-            subband_fir_hist[k] = cos_mod[j++] * sum[k];
-        for (k = 0; k < 16; k++)
-            subband_fir_hist[32-k-1] = cos_mod[j++] * diff[k];
-
         /* Multiply by filter coefficients */
         for (k = 31, i = 0; i < 32; i++, k--)
             for (j = 0; j < 512; j += 64){




More information about the ffmpeg-cvslog mailing list