Browse Source

avformat/utils: avoid discarded streams in av_find_default_stream_index()

Fixes Ticket2010

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit ff6841c6bb)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4.9
Michael Niedermayer 11 years ago
parent
commit
d7071efae4
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/utils.c

+ 3
- 0
libavformat/utils.c View File

@@ -1544,6 +1544,9 @@ int av_find_default_stream_index(AVFormatContext *s)
score += 50; score += 50;
} }


if (st->discard != AVDISCARD_ALL)
score += 200;

if (score > best_score) { if (score > best_score) {
best_score = score; best_score = score;
best_stream = i; best_stream = i;


Loading…
Cancel
Save