summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMarc Mason <mpeg.blue@free.fr>2009-01-16 14:03:46 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2009-01-16 14:03:46 +0000
commit9d9aac84f6b7aa1606a3d3682dd7df3bde7ef5be (patch)
treeafeb0ee107ae829ca13675d55c7d0eade3807531 /libavformat
parent0ac1dc6f3cf3b8c45ec1f71762337baf5328cac0 (diff)
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
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/avidec.c2
1 files changed, 1 insertions, 1 deletions
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;