mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
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
@ -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…
Reference in New Issue
Block a user