summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/mov.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index dfe50c1cf5..dc0135d8bd 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1500,7 +1500,8 @@ static void mov_build_index(MOVContext *mov, AVStream *st)
}
}
}
- st->codec->bit_rate = stream_size*8*sc->time_scale/st->duration;
+ if (st->duration > 0)
+ st->codec->bit_rate = stream_size*8*sc->time_scale/st->duration;
} else {
for (i = 0; i < sc->chunk_count; i++) {
unsigned chunk_samples;