diff options
author | Vitor Sessak | 2008-07-28 05:18:39 +0000 |
---|---|---|
committer | Vitor Sessak | 2008-07-28 05:18:39 +0000 |
commit | c749f3db982aacba0d120fddf6c0f19c6e1f04a4 (patch) | |
tree | e3aa86a0b7a0336ca0b5279d6580622845786935 /libavcodec/ra288.c | |
parent | 6509507fad19f1b2218b83b7b1a2d4ed51c42753 (diff) |
Cosmetics: make comment match var name
Originally committed as revision 14454 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r-- | libavcodec/ra288.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 16bb5656cc..a9cf10fe6a 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; |