Merge commit '24e87f7f425a52b1e69661dcb2fbe0555a76f30b'
* commit '24e87f7f425a52b1e69661dcb2fbe0555a76f30b': Remove obsolete FF_API_PROBE_MIME cruft. Conflicts: libavformat/avformat.h libavformat/format.c libavformat/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -216,10 +216,8 @@ AVInputFormat *av_probe_input_format3(AVProbeData *pd, int is_opened,
|
||||
if (av_match_ext(lpd.filename, fmt1->extensions))
|
||||
score = AVPROBE_SCORE_EXTENSION;
|
||||
}
|
||||
#if FF_API_PROBE_MIME
|
||||
if (av_match_name(lpd.mime_type, fmt1->mime_type))
|
||||
score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
|
||||
#endif
|
||||
if (score > score_max) {
|
||||
score_max = score;
|
||||
fmt = fmt1;
|
||||
@@ -272,10 +270,9 @@ int av_probe_input_buffer2(AVIOContext *pb, AVInputFormat **fmt,
|
||||
if (offset >= max_probe_size)
|
||||
return AVERROR(EINVAL);
|
||||
|
||||
#if FF_API_PROBE_MIME
|
||||
if (pb->av_class)
|
||||
av_opt_get(pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &pd.mime_type);
|
||||
#else
|
||||
#if 0
|
||||
if (!*fmt && pb->av_class && av_opt_get(pb, "mime_type", AV_OPT_SEARCH_CHILDREN, &mime_type) >= 0 && mime_type) {
|
||||
if (!av_strcasecmp(mime_type, "audio/aacp")) {
|
||||
*fmt = av_find_input_format("aac");
|
||||
@@ -338,9 +335,7 @@ fail:
|
||||
if (ret >= 0)
|
||||
ret = ret2;
|
||||
|
||||
#if FF_API_PROBE_MIME
|
||||
av_free(pd.mime_type);
|
||||
#endif
|
||||
return ret < 0 ? ret : score;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user