]> git.sesse.net Git - ffmpeg/commitdiff
mxfdec: Fix integer overflow with many channels
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 8 Jan 2013 01:43:14 +0000 (02:43 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 11 Jan 2013 16:42:04 +0000 (17:42 +0100)
Fixes division by zero

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Reviewed-by: Matthieu Bouron <matthieu.bouron@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/mxfdec.c

index bb5f4a78083f41edfd86a3629370823cf74df4e2..648a579bef05e54a99cd0a65a6074f956ac1afdd 100644 (file)
@@ -2070,7 +2070,7 @@ static int mxf_set_audio_pts(MXFContext *mxf, AVCodecContext *codec, AVPacket *p
     pkt->pts = track->sample_count;
     if (codec->channels <= 0 || av_get_bits_per_sample(codec->codec_id) <= 0)
         return AVERROR(EINVAL);
-    track->sample_count += pkt->size / (codec->channels * av_get_bits_per_sample(codec->codec_id) / 8);
+    track->sample_count += pkt->size / (codec->channels * (int64_t)av_get_bits_per_sample(codec->codec_id) / 8);
     return 0;
 }