Commit f1f7f590 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/omadec: fix number suffix

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 465f3705
......@@ -174,7 +174,7 @@ static int nprobe(AVFormatContext *s, uint8_t *enc_header, unsigned size,
taglen = AV_RB32(&enc_header[pos + 32]);
datalen = AV_RB32(&enc_header[pos + 36]) >> 4;
pos += 44L + taglen;
pos += 44LL + taglen;
if (pos + (((uint64_t)datalen) << 4) > size)
return -1;
......
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