summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-02-07 16:39:00 +0100
committerAnton Khirnov <anton@khirnov.net>2024-03-01 16:57:24 +0100
commit067fde49662c73f1c90f354251edbea3b9026164 (patch)
tree66acb5c8f3181d284a651931e21c239b14eab667 /libavutil
parent39a3a1c69bed8d4a453410d049b0515df54348ad (diff)
lavu/opt: document AVOption.flags
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/opt.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h
index 36e28249ee..d72d65052f 100644
--- a/libavutil/opt.h
+++ b/libavutil/opt.h
@@ -320,6 +320,9 @@ typedef struct AVOption {
double min; ///< minimum valid value for the option
double max; ///< maximum valid value for the option
+ /**
+ * A combination of AV_OPT_FLAG_*.
+ */
int flags;
/**