diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2004-10-06 08:50:46 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2004-10-06 08:50:46 +0000 |
commit | 7fea94ce4af2c97cbfc0a279fe7a755f9185f343 (patch) | |
tree | 3a57473464a85cbe464d056ae5db963c17e19abd /libavcodec/indeo3.c | |
parent | a319bbac5c1b887894a4edea8bb0016161e239a2 (diff) | |
download | ffmpeg-7fea94ce4af2c97cbfc0a279fe7a755f9185f343.tar.gz |
* fixing a few of gcc 'clean-code' warnings
Originally committed as revision 3563 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo3.c')
-rw-r--r-- | libavcodec/indeo3.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index a27c3ba4f2..7e4cf01206 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -101,7 +101,8 @@ static void iv_Decode_Chunk(Indeo3DecodeContext *s, unsigned char *cur, static void iv_alloc_frames(Indeo3DecodeContext *s) { int luma_width, luma_height, luma_pixels, chroma_width, chroma_height, - chroma_pixels, bufsize, i; + chroma_pixels, i; + unsigned int bufsize; luma_width = (s->width + 3) & (~3); luma_height = (s->height + 3) & (~3); |