From 2c4636716371940b570e5b11cd7bac5b2782b602 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Mon, 28 Jul 2008 04:07:18 +0000 Subject: [PATCH] Cosmetics: remove braces and useless newline Originally committed as revision 14448 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra288.c | 6 ++---- 1 file 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); } /**