From 7c2fa13df9a6130b3f258c7513933cbdca2fe23b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 7 Feb 2015 21:12:56 +0100 Subject: [PATCH] avformat/omadec: only compute timestamps based on bitrate if its set Fixes division by zero Signed-off-by: Michael Niedermayer --- libavformat/omadec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/omadec.c b/libavformat/omadec.c index b08005538c..6f3671b8e9 100644 --- a/libavformat/omadec.c +++ b/libavformat/omadec.c @@ -430,7 +430,7 @@ static int oma_read_packet(AVFormatContext *s, AVPacket *pkt) pkt->stream_index = 0; - if (pos > 0) { + if (pos > 0 && byte_rate > 0) { pkt->pts = pkt->dts = av_rescale(pos, st->time_base.den, byte_rate * (int64_t)st->time_base.num);