Never favour an audio stream with 0 channels in av_find_best_stream().
Fixes ticket #3311.
This commit is contained in:
parent
1132937077
commit
cb36e441de
1 changed files with 2 additions and 0 deletions
|
|
@ -3263,6 +3263,8 @@ int av_find_best_stream(AVFormatContext *ic,
|
|||
continue;
|
||||
if (st->disposition & (AV_DISPOSITION_HEARING_IMPAIRED|AV_DISPOSITION_VISUAL_IMPAIRED))
|
||||
continue;
|
||||
if (type == AVMEDIA_TYPE_AUDIO && !avctx->channels)
|
||||
continue;
|
||||
if (decoder_ret) {
|
||||
decoder = find_decoder(ic, st, st->codec->codec_id);
|
||||
if (!decoder) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue