aboutsummaryrefslogtreecommitdiffstats
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorNathan Kurz <nate@verse.com>2004-09-29 15:53:37 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-09-29 15:53:37 +0000
commitc19e76ceb7310dbf68ee8c7ffdfd5cc431156092 (patch)
tree8a637774a14e362a9f5d9e8adb6fd649a127a09e /ffmpeg.c
parentcfeae977a797ae7f0401432c5fcefa060979e46f (diff)
downloadffmpeg-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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index fecb3147af..bafab6a60b 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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;
}
}