diff options
author | Nathan Kurz <nate@verse.com> | 2004-09-29 15:53:37 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-09-29 15:53:37 +0000 |
commit | c19e76ceb7310dbf68ee8c7ffdfd5cc431156092 (patch) | |
tree | 8a637774a14e362a9f5d9e8adb6fd649a127a09e /ffmpeg.c | |
parent | cfeae977a797ae7f0401432c5fcefa060979e46f (diff) | |
download | ffmpeg-c19e76ceb7310dbf68ee8c7ffdfd5cc431156092.tar.gz |
ffmpeg not selecting first available stream, patch by (Nathan Kurz <nate at verse dot com>)
Originally committed as revision 3538 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1445,6 +1445,7 @@ static int av_encode(AVFormatContext **output_files, ist->st->codec.codec_type == ost->st->codec.codec_type) { ost->source_index = j; found = 1; + break; } } |