[FFmpeg-cvslog] r14448 - trunk/libavcodec/ra288.c
vitor
subversion
Mon Jul 28 06:07:18 CEST 2008
Author: vitor
Date: Mon Jul 28 06:07:18 2008
New Revision: 14448
Log:
Cosmetics: remove braces and useless newline
Modified:
trunk/libavcodec/ra288.c
Modified: trunk/libavcodec/ra288.c
==============================================================================
--- trunk/libavcodec/ra288.c (original)
+++ trunk/libavcodec/ra288.c Mon Jul 28 06:07:18 2008
@@ -99,10 +99,8 @@ static void decode(RA288Context *ractx,
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);
}
/**
More information about the ffmpeg-cvslog
mailing list