[FFmpeg-cvslog] movenc: fix crashes if a stream is empty.

Reimar Döffinger git at videolan.org
Fri Feb 17 17:31:24 CET 2012


ffmpeg | branch: master | Reimar Döffinger <Reimar.Doeffinger at gmx.de> | Sun Feb 12 12:05:43 2012 +0100| [3ce7148dff61f782336940470a7af5eea59932f4] | committer: Reimar Döffinger

movenc: fix crashes if a stream is empty.

For some reason this always happens with -f ismv.
See trac issue #996.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger at gmx.de>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3ce7148dff61f782336940470a7af5eea59932f4
---

 libavformat/movenc.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 1f56fe1..d1337a0 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -287,6 +287,8 @@ static unsigned compute_avg_bitrate(MOVTrack *track)
 {
     uint64_t size = 0;
     int i;
+    if (!track->track_duration)
+        return 0;
     for (i = 0; i < track->entry; i++)
         size += track->cluster[i].size;
     return size * 8 * track->timescale / track->track_duration;
@@ -2052,7 +2054,8 @@ static int mov_write_moov_tag(AVIOContext *pb, MOVMuxContext *mov,
         mov->tracks[i].time = mov->time;
         mov->tracks[i].track_id = i+1;
 
-        build_chunks(&mov->tracks[i]);
+        if (mov->tracks[i].entry)
+            build_chunks(&mov->tracks[i]);
     }
 
     if (mov->chapter_track)



More information about the ffmpeg-cvslog mailing list