summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-04-24 14:56:10 +0200
committerAnton Khirnov <anton@khirnov.net>2021-06-11 19:42:24 +0200
commit71c0ef882e37091b22bae2175efb2d5cc4225d8d (patch)
tree00f60b71ead9634ec650184f0d3402e9f17f736e /libavformat/avformat.h
parent5384ee486af11df9c9a9a9fd8f3cbd3fc859cd17 (diff)
downloadffmpeg-71c0ef882e37091b22bae2175efb2d5cc4225d8d.tar.gz
lavf: clarify probesize/format_probesize doxy
probesize is not used for probing the input format, but its documentation claims it does.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h20
1 files changed, 15 insertions, 5 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 043baeea1f..cd7b0d941c 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -1241,9 +1241,15 @@ typedef struct AVFormatContext {
#define AVFMT_FLAG_AUTO_BSF 0x200000 ///< Add bitstream filters as requested by the muxer
/**
- * Maximum size of the data read from input for determining
- * the input container format.
+ * Maximum number of bytes read from input in order to determine stream
+ * properties. Used when reading the global header and in
+ * avformat_find_stream_info().
+ *
* Demuxing only, set by the caller before avformat_open_input().
+ *
+ * @note this is \e not used for determining the \ref AVInputFormat
+ * "input format"
+ * @sa format_probesize
*/
int64_t probesize;
@@ -1518,9 +1524,13 @@ typedef struct AVFormatContext {
int probe_score;
/**
- * number of bytes to read maximally to identify format.
- * - encoding: unused
- * - decoding: set by user
+ * Maximum number of bytes read from input in order to identify the
+ * \ref AVInputFormat "input format". Only used when the format is not set
+ * explicitly by the caller.
+ *
+ * Demuxing only, set by the caller before avformat_open_input().
+ *
+ * @sa probesize
*/
int format_probesize;