avformat/omadec: fix number suffix
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
465f3705b1
commit
f1f7f5903a
@ -174,7 +174,7 @@ static int nprobe(AVFormatContext *s, uint8_t *enc_header, unsigned size,
|
|||||||
taglen = AV_RB32(&enc_header[pos + 32]);
|
taglen = AV_RB32(&enc_header[pos + 32]);
|
||||||
datalen = AV_RB32(&enc_header[pos + 36]) >> 4;
|
datalen = AV_RB32(&enc_header[pos + 36]) >> 4;
|
||||||
|
|
||||||
pos += 44L + taglen;
|
pos += 44LL + taglen;
|
||||||
|
|
||||||
if (pos + (((uint64_t)datalen) << 4) > size)
|
if (pos + (((uint64_t)datalen) << 4) > size)
|
||||||
return -1;
|
return -1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user