forked from FFmpeg/FFmpeg
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
This commit is contained in:
parent
9b64a036c0
commit
6919e54c00
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue