summaryrefslogtreecommitdiff
path: root/libavcodec/ra288.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-07-28 04:07:18 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-07-28 04:07:18 +0000
commit2c4636716371940b570e5b11cd7bac5b2782b602 (patch)
tree632517e40e73bc7b5f8901f682462fce17548d3e /libavcodec/ra288.c
parent2b356efec2814c8fdefe6761c354a88d691262cf (diff)
Cosmetics: remove braces and useless newline
Originally committed as revision 14448 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r--libavcodec/ra288.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c
index 5dc254589e..bdd0233f5e 100644
--- a/libavcodec/ra288.c
+++ b/libavcodec/ra288.c
@@ -99,10 +99,8 @@ static void decode(RA288Context *ractx, float gain, int cb_coef)
buffer[x] -= ractx->sp_lpc[x-y-1] * buffer[y];
/* output */
- for (x=0; x < 5; x++) {
- ractx->sb[4-x] =
- av_clipf(ractx->sb[4-x] + buffer[x], -4095, 4095);
- }
+ for (x=0; x < 5; x++)
+ ractx->sb[4-x] = av_clipf(ractx->sb[4-x] + buffer[x], -4095, 4095);
}
/**