Commit e6f27346 authored by Michael Niedermayer's avatar Michael Niedermayer

pmpdec: make i unsigned, avoid undefined behavior of i++

Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a960f3b9
......@@ -47,7 +47,7 @@ static int pmp_header(AVFormatContext *s)
uint32_t index_cnt;
int audio_codec_id = AV_CODEC_ID_NONE;
int srate, channels;
int i;
unsigned i;
uint64_t pos;
int64_t fsize = avio_size(pb);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment