avformat/omadec: fix number suffix

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-02-01 19:36:36 +01:00
parent 465f3705b1
commit f1f7f5903a
1 changed files with 1 additions and 1 deletions

View File

@ -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;