Mercurial > libavformat.hg
changeset 4230:de3cb095285c libavformat
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
author | benoit |
---|---|
date | Fri, 16 Jan 2009 14:03:46 +0000 |
parents | 765fe37ec45b |
children | 07ea426be9a3 |
files | avidec.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/avidec.c Fri Jan 16 01:26:52 2009 +0000 +++ b/avidec.c Fri Jan 16 14:03:46 2009 +0000 @@ -235,7 +235,7 @@ { 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;