Cosmetics: remove braces and useless newline

Originally committed as revision 14448 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-07-28 04:07:18 +00:00
parent 2b356efec2
commit 2c46367163
1 changed files with 2 additions and 4 deletions

View File

@ -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);
}
/**