summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-07-06 10:35:01 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-07-06 10:35:01 +0000
commit8edfd15175874f38fcdbcd4584f3f441c3e2712b (patch)
tree64422379f9c6f17b2173722e403ee76e81768a0b
parenta5f0f504dfd70e4838502e4f85c08aa20900c382 (diff)
Cosmetics: remove braces
Originally committed as revision 14089 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/ra288.c3
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;