OSDN Git Service

audemux: Fix potential integer overflow leading to a division by 0
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 22 Apr 2012 13:34:21 +0000 (15:34 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 22 Apr 2012 13:34:21 +0000 (15:34 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/au.c

index bec0d76..b66d559 100644 (file)
@@ -170,7 +170,7 @@ static int au_read_header(AVFormatContext *s)
     st->codec->channels = channels;
     st->codec->sample_rate = rate;
     if (data_size != AU_UNKNOWN_SIZE)
-    st->duration = (((int64_t)data_size)<<3) / (st->codec->channels * bps);
+    st->duration = (((int64_t)data_size)<<3) / (st->codec->channels * (int64_t)bps);
     avpriv_set_pts_info(st, 64, 1, rate);
     return 0;
 }