You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avformat/omadec: only compute timestamps based on bitrate if its set
Fixes division by zero Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user