lavf/utils: Respect default disposition when select the AVStream
Respect default disposition when select the AVStream Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
parent
bd5e92ef8a
commit
9521d7dd58
1 changed files with 2 additions and 1 deletions
|
@ -4218,7 +4218,8 @@ int av_find_best_stream(AVFormatContext *ic, enum AVMediaType type,
|
|||
continue;
|
||||
}
|
||||
}
|
||||
disposition = !(st->disposition & (AV_DISPOSITION_HEARING_IMPAIRED | AV_DISPOSITION_VISUAL_IMPAIRED));
|
||||
disposition = !(st->disposition & (AV_DISPOSITION_HEARING_IMPAIRED | AV_DISPOSITION_VISUAL_IMPAIRED))
|
||||
+ !! (st->disposition & AV_DISPOSITION_DEFAULT);
|
||||
count = st->codec_info_nb_frames;
|
||||
bitrate = par->bit_rate;
|
||||
multiframe = FFMIN(5, count);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue