diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 6abdb6d480..498c557a3c 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -459,7 +459,7 @@ typedef struct AVProbeData { #define AVPROBE_SCORE_STREAM_RETRY (AVPROBE_SCORE_MAX/4-1) #define AVPROBE_SCORE_EXTENSION 50 ///< score for file extension -#define AVPROBE_SCORE_MIME 75 ///< score for file mime type +#define AVPROBE_SCORE_MIME_BONUS 30 ///< score added for matching mime type #define AVPROBE_SCORE_MAX 100 ///< maximum score #define AVPROBE_PADDING_SIZE 32 ///< extra allocated bytes at the end of the probe buffer diff --git a/libavformat/format.c b/libavformat/format.c index e65a6fc05e..71018ea6ab 100644 --- a/libavformat/format.c +++ b/libavformat/format.c @@ -212,10 +212,10 @@ const AVInputFormat *av_probe_input_format3(const AVProbeData *pd, score = AVPROBE_SCORE_EXTENSION; } if (av_match_name(lpd.mime_type, fmt1->mime_type)) { - if (AVPROBE_SCORE_MIME > score) { - av_log(NULL, AV_LOG_DEBUG, "Probing %s score:%d increased to %d due to MIME type\n", fmt1->name, score, AVPROBE_SCORE_MIME); - score = AVPROBE_SCORE_MIME; - } + int old_score = score; + score += AVPROBE_SCORE_MIME_BONUS; + if (score > AVPROBE_SCORE_MAX) score = AVPROBE_SCORE_MAX; + av_log(NULL, AV_LOG_DEBUG, "Probing %s score:%d increased to %d due to MIME type\n", fmt1->name, old_score, score); } if (score > score_max) { score_max = score; diff --git a/libavformat/libopenmpt.c b/libavformat/libopenmpt.c index 736af7caf2..dee975c9c2 100644 --- a/libavformat/libopenmpt.c +++ b/libavformat/libopenmpt.c @@ -244,7 +244,7 @@ static int read_probe_openmpt(const AVProbeData *p) * AVPROBE_SCORE_MAX in order to reduce the impact in the rare * cases of false positives. */ - return AVPROBE_SCORE_MIME + 1; + return (AVPROBE_SCORE_MAX * 3) / 4 + 1; } else if (probe_result == OPENMPT_PROBE_FILE_HEADER_RESULT_WANTMOREDATA) { if (probe_openmpt_extension(p) > 0) { return AVPROBE_SCORE_RETRY;