mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
avformat/utils: End probing if the expected codec surpasses AVPROBE_SCORE_STREAM_RETRY
Fixes Ticket5800 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit c75273310cf1becffee79bab0e2bba0b1606afb7) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
cd91aaa4cc
commit
1b47c278a6
@ -297,7 +297,7 @@ static int set_codec_from_probe_data(AVFormatContext *s, AVStream *st,
|
||||
int score;
|
||||
AVInputFormat *fmt = av_probe_input_format3(pd, 1, &score);
|
||||
|
||||
if (fmt && st->request_probe <= score) {
|
||||
if (fmt) {
|
||||
int i;
|
||||
av_log(s, AV_LOG_DEBUG,
|
||||
"Probe with size=%d, packets=%d detected %s with score=%d\n",
|
||||
@ -305,6 +305,9 @@ static int set_codec_from_probe_data(AVFormatContext *s, AVStream *st,
|
||||
fmt->name, score);
|
||||
for (i = 0; fmt_id_type[i].name; i++) {
|
||||
if (!strcmp(fmt->name, fmt_id_type[i].name)) {
|
||||
if (st->request_probe > score &&
|
||||
st->codec->codec_id != fmt_id_type[i].id)
|
||||
continue;
|
||||
st->codec->codec_id = fmt_id_type[i].id;
|
||||
st->codec->codec_type = fmt_id_type[i].type;
|
||||
return score;
|
||||
|
Loading…
x
Reference in New Issue
Block a user