Browse Source

Check if there is at least a stream before writing trailer.

Patch by Art Clarke: aclarke vlideshow com

Originally committed as revision 13836 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Art Clarke Benoit Fouet 17 years ago
parent
commit
6919e54c00
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/utils.c

+ 1
- 1
libavformat/utils.c View File

@@ -2551,7 +2551,7 @@ int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out, AVPacket *pk
pktl= pktl->next;
}

if(s->nb_streams == stream_count || (flush && stream_count)){
if(stream_count && (s->nb_streams == stream_count || flush)){
pktl= s->packet_buffer;
*out= pktl->pkt;



Loading…
Cancel
Save