summaryrefslogtreecommitdiff
path: root/libavutil/opt.h
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2018-04-22 16:30:19 +0200
committerClément Bœsch <u@pkh.me>2018-04-26 19:50:29 +0200
commit5be0410cb31cd27ce5b518b0eca942ec90af5f34 (patch)
treef0682b623833f2cecd922f0089ebc58103ce5e47 /libavutil/opt.h
parent71fa82bed62f812d30aee26f3c6385e2ec890ebb (diff)
lavu/opt: add AV_OPT_FLAG_DEPRECATED
Diffstat (limited to 'libavutil/opt.h')
-rw-r--r--libavutil/opt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h
index 07da68ea23..39f4a8dda0 100644
--- a/libavutil/opt.h
+++ b/libavutil/opt.h
@@ -289,6 +289,7 @@ typedef struct AVOption {
#define AV_OPT_FLAG_READONLY 128
#define AV_OPT_FLAG_BSF_PARAM (1<<8) ///< a generic parameter which can be set by the user for bit stream filtering
#define AV_OPT_FLAG_FILTERING_PARAM (1<<16) ///< a generic parameter which can be set by the user for filtering
+#define AV_OPT_FLAG_DEPRECATED (1<<17) ///< set if option is deprecated, users should refer to AVOption.help text for more information
//FIXME think about enc-audio, ... style flags
/**