mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
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
@ -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…
Reference in New Issue
Block a user