diff options
author | Fabrice Bellard | 2003-02-02 15:54:11 +0000 |
---|---|---|
committer | Fabrice Bellard | 2003-02-02 15:54:11 +0000 |
commit | a26058a50d3f9501701c4492dd78516509bc537d (patch) | |
tree | 3fb19fbe672848ff42c37235c5ab4cb18795e966 /libavformat | |
parent | 811b32ed69b938cbaa2fd01db5794512c23ba3ff (diff) |
Try this fix
Originally committed as revision 1532 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avidec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index 449b73b046..650b03fcb6 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -50,7 +50,8 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap) AVIContext *avi = s->priv_data; ByteIOContext *pb = &s->pb; UINT32 tag, tag1; - int codec_type, stream_index, size, frame_period, bit_rate; + int codec_type, stream_index, frame_period, bit_rate; + unsigned int size; int i; AVStream *st; |