Cosmetics: make comment match var name
authorVitor Sessak <vitor1001@gmail.com>
Mon, 28 Jul 2008 05:18:39 +0000 (05:18 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Mon, 28 Jul 2008 05:18:39 +0000 (05:18 +0000)
Originally committed as revision 14454 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ra288.c

index 16bb565..a9cf10f 100644 (file)
@@ -79,7 +79,7 @@ static void decode(RA288Context *ractx, float gain, int cb_coef)
     sum = av_clipf(sum, 0, 60);
 
     /* block 48 of G.728 spec */
-    sumsum = exp(sum * 0.1151292546497) * gain;    /* pow(10.0,sum/20)*f */
+    sumsum = exp(sum * 0.1151292546497) * gain; /* pow(10.0,sum/20)*gain */
 
     for (x=0; x < 5; x++)
         buffer[x] = codetable[cb_coef][x] * sumsum;