]> git.sesse.net Git - ffmpeg/commitdiff
Rename var
authorVitor Sessak <vitor1001@gmail.com>
Sun, 1 Jun 2008 19:35:04 +0000 (19:35 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Sun, 1 Jun 2008 19:35:04 +0000 (19:35 +0000)
Originally committed as revision 13606 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ra144.c

index 2883d4b5dfcc6213ccff4f746e81749e59270365..200000600b46f36fe92efafbe789aac478f6deaa 100644 (file)
@@ -298,7 +298,7 @@ static int eval_refl(const int16_t *coefs, int *refl)
 }
 
 static int dec2(RA144Context *ractx, int16_t *decsp, int block_num,
-                int copynew, int f)
+                int copynew, int energy)
 {
     int work[10];
     int a = block_num + 1;
@@ -315,13 +315,13 @@ static int dec2(RA144Context *ractx, int16_t *decsp, int block_num,
         // coefficients
         if (copynew) {
             int_to_int16(decsp, ractx->lpc_coef);
-            return rms(ractx->lpc_refl, f);
+            return rms(ractx->lpc_refl, energy);
         } else {
             int_to_int16(decsp, ractx->lpc_coef_old);
-            return rms(ractx->lpc_refl_old, f);
+            return rms(ractx->lpc_refl_old, energy);
         }
     } else {
-        return rms(work, f);
+        return rms(work, energy);
     }
 }