[FFmpeg-cvslog] r23004 - trunk/libavformat/avformat.h
reimar
subversion
Sat May 1 17:36:51 CEST 2010
Author: reimar
Date: Sat May 1 17:36:51 2010
New Revision: 23004
Log:
Fix off-by-one errors in description of score_max argument for
av_probe_input_format2
Modified:
trunk/libavformat/avformat.h
Modified: trunk/libavformat/avformat.h
==============================================================================
--- trunk/libavformat/avformat.h Sat May 1 15:54:13 2010 (r23003)
+++ trunk/libavformat/avformat.h Sat May 1 17:36:51 2010 (r23004)
@@ -892,9 +892,10 @@ AVInputFormat *av_probe_input_format(AVP
*
* @param is_opened Whether the file is already opened; determines whether
* demuxers with or without AVFMT_NOFILE are probed.
- * @param score_max minimum score required to accept a detection, set to actual
- * detection score afterwards.
- * If the score is < AVPROBE_SCORE_MAX / 4 it is recommended
+ * @param score_max A probe score larger that this is required to accept a
+ * detection, the variable is set to the actual detection
+ * score afterwards.
+ * If the score is <= AVPROBE_SCORE_MAX / 4 it is recommended
* to retry with a larger probe buffer.
*/
AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max);
More information about the ffmpeg-cvslog
mailing list