Cosmetics: remove braces and useless newline

Originally committed as revision 14448 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Vitor Sessak 17 years ago
parent 2b356efec2
commit 2c46367163
  1. 6
      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);
}
/**

Loading…
Cancel
Save