[SCM] libav/experimental: Cosmetics: remove braces and useless newline
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:26:15 UTC 2013
The following commit has been merged in the experimental branch:
commit 2c4636716371940b570e5b11cd7bac5b2782b602
Author: Vitor Sessak <vitor1001 at gmail.com>
Date: Mon Jul 28 04:07:18 2008 +0000
Cosmetics: remove braces and useless newline
Originally committed as revision 14448 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c
index 5dc2545..bdd0233 100644
--- a/libavcodec/ra288.c
+++ b/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);
}
/**
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list