diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-31 14:38:34 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-31 14:38:34 +0000 |
commit | 4dc471c30cb9c2671ae6c9cee783704a4d6d422d (patch) | |
tree | c485b14367e9a06d7e81ac7a3fb5d53f2d55622a | |
parent | 9765b44c5090c24d4439a6c8322c72dedef6756f (diff) | |
download | ffmpeg-4dc471c30cb9c2671ae6c9cee783704a4d6d422d.tar.gz |
Minor simplification
Originally committed as revision 13578 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ra144.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index f93bcaa2ab..920582758b 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -322,8 +322,7 @@ static int ra144_decode_frame(AVCodecContext * avctx, static const uint8_t sizes[10] = {6, 5, 5, 4, 4, 3, 3, 3, 3, 2}; unsigned int refl_rms[4]; // RMS of the reflection coefficients uint16_t gbuf2[4][30]; - unsigned int c; - int i; + int i, c; int16_t *data = vdata; unsigned int energy; |