ffmpeg | branch: release/2.4 | Michael Niedermayer <michae...@gmx.at> | Sun Feb 
 1 19:36:36 2015 +0100| [b8546aee84319617587e5b093e06cc50cc5a016d] | committer: 
Michael Niedermayer

avformat/omadec: fix number suffix

Signed-off-by: Michael Niedermayer <michae...@gmx.at>
(cherry picked from commit f1f7f5903ab49b84789af5341492afbaba808a70)

Signed-off-by: Michael Niedermayer <michae...@gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b8546aee84319617587e5b093e06cc50cc5a016d
---

 libavformat/omadec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/omadec.c b/libavformat/omadec.c
index 9f3d3aa..4295413 100644
--- a/libavformat/omadec.c
+++ b/libavformat/omadec.c
@@ -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;

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

Reply via email to