1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-03-28 12:32:17 +02:00

Fix off-by-one errors in description of score_max argument for

av_probe_input_format2

Originally committed as revision 23004 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2010-05-01 15:36:51 +00:00
parent d0eb2b7849
commit c99d506b3b

View File

@ -892,9 +892,10 @@ AVInputFormat *av_probe_input_format(AVProbeData *pd, int is_opened);
* *
* @param is_opened Whether the file is already opened; determines whether * @param is_opened Whether the file is already opened; determines whether
* demuxers with or without AVFMT_NOFILE are probed. * demuxers with or without AVFMT_NOFILE are probed.
* @param score_max minimum score required to accept a detection, set to actual * @param score_max A probe score larger that this is required to accept a
* detection score afterwards. * detection, the variable is set to the actual detection
* If the score is < AVPROBE_SCORE_MAX / 4 it is recommended * score afterwards.
* If the score is <= AVPROBE_SCORE_MAX / 4 it is recommended
* to retry with a larger probe buffer. * to retry with a larger probe buffer.
*/ */
AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max); AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max);