ffmpeg | branch: master | Michael Niedermayer <michae...@gmx.at> | Mon Apr 6 04:20:51 2015 +0200| [ff6841c6bb2d35f8d461419e45d59be7542d03fe] | committer: Michael Niedermayer
avformat/utils: avoid discarded streams in av_find_default_stream_index() Fixes Ticket2010 Signed-off-by: Michael Niedermayer <michae...@gmx.at> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ff6841c6bb2d35f8d461419e45d59be7542d03fe --- libavformat/utils.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/utils.c b/libavformat/utils.c index 6eec7a1..122fc1f 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1597,6 +1597,9 @@ int av_find_default_stream_index(AVFormatContext *s) score += 50; } + if (st->discard != AVDISCARD_ALL) + score += 200; + if (score > best_score) { best_score = score; best_stream = i; _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog