diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-07-06 10:35:01 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-07-06 10:35:01 +0000 |
commit | 8edfd15175874f38fcdbcd4584f3f441c3e2712b (patch) | |
tree | 64422379f9c6f17b2173722e403ee76e81768a0b /libavcodec | |
parent | a5f0f504dfd70e4838502e4f85c08aa20900c382 (diff) | |
download | ffmpeg-8edfd15175874f38fcdbcd4584f3f441c3e2712b.tar.gz |
Cosmetics: remove braces
Originally committed as revision 14089 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ra288.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 7702a3c350..f7e1a63d2f 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -69,9 +69,8 @@ static void decode(Real288_internal *glob, float gain, int cb_coef) sumsum = exp(sum * 0.1151292546497) * gain; /* pow(10.0,sum/20)*f */ - for (x=0; x < 5; x++) { + for (x=0; x < 5; x++) buffer[x] = codetable[cb_coef][x] * sumsum; - } sum = scalar_product_float(buffer, buffer, 5) / 5; |