Commit ef72ea22 authored by michael's avatar michael

Print at debug level the score with which probing succeeded.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19889 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bcb2a623
......@@ -474,6 +474,8 @@ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename,
}
/* guess file format */
fmt = av_probe_input_format2(pd, 1, &score);
if(fmt)
av_log(*ic_ptr, AV_LOG_DEBUG, "Probe with size=%d detected %s with score=%d\n", probe_size, fmt->name, score);
}
av_freep(&pd->buf);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment