From 9d9aac84f6b7aa1606a3d3682dd7df3bde7ef5be Mon Sep 17 00:00:00 2001 From: Marc Mason Date: Fri, 16 Jan 2009 14:03:46 +0000 Subject: [PATCH] Make unsigned int a variable that does not need to be explicitely 32 bits. Fixes a warning. Patch by: Marc Mason mpeg (your_ad_here) blue (chez) free fr Originally committed as revision 16632 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/avidec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/avidec.c b/libavformat/avidec.c index 6997ebc3b8..128614be50 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -235,7 +235,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap) { AVIContext *avi = s->priv_data; ByteIOContext *pb = s->pb; - uint32_t tag, tag1, handler; + unsigned int tag, tag1, handler; int codec_type, stream_index, frame_period, bit_rate; unsigned int size, nb_frames; int i;