From c749f3db982aacba0d120fddf6c0f19c6e1f04a4 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Mon, 28 Jul 2008 05:18:39 +0000 Subject: [PATCH] Cosmetics: make comment match var name Originally committed as revision 14454 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra288.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 16bb565..a9cf10f 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -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; -- 2.7.4