forked from FFmpeg/FFmpeg
Cosmetics: remove braces and useless newline
Originally committed as revision 14448 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2b356efec2
commit
2c46367163
1 changed files with 2 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue