[FFmpeg-soc] [soc]: r5159 - als/alsdec.c

thilo.borgmann subversion at mplayerhq.hu
Mon Aug 17 12:45:27 CEST 2009


Author: thilo.borgmann
Date: Mon Aug 17 12:45:27 2009
New Revision: 5159

Log:
Rename variable.

Modified:
   als/alsdec.c

Modified: als/alsdec.c
==============================================================================
--- als/alsdec.c	Mon Aug 17 12:44:46 2009	(r5158)
+++ als/alsdec.c	Mon Aug 17 12:45:27 2009	(r5159)
@@ -659,10 +659,10 @@ static int read_block_data(ALSDecContext
             unsigned int progressive = FFMIN(block_length, opt_order);
 
             for (smp = 0; smp < block_length; smp++) {
-                unsigned int max, convert;
+                unsigned int max, dequant;
 
-                convert = smp < progressive;
-                max     = convert ? smp : progressive;
+                dequant = smp < progressive;
+                max     = dequant ? smp : progressive;
 
                 y = 1 << 19;
 
@@ -670,7 +670,7 @@ static int read_block_data(ALSDecContext
                     y += lpc_cof[sb] * raw_samples[smp - (sb + 1)];
 
                 raw_samples[smp] -= y >> 20;
-                if (convert)
+                if (dequant)
                     parcor_to_lpc(smp, quant_cof, lpc_cof);
             }
         } else {


More information about the FFmpeg-soc mailing list