mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
pmpdec: make i unsigned, avoid undefined behavior of i++
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a960f3b918
commit
e6f27346b7
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user