summaryrefslogtreecommitdiff
path: root/libavutil/opt.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-10-08 12:56:55 +0200
committerPaul B Mahol <onemda@gmail.com>2019-10-14 11:28:54 +0200
commitc109dfc1b1946964a19ad3beee73db6d9c95d940 (patch)
tree06550165f6e44c798886369c977caded1eb91f1b /libavutil/opt.c
parenta918b833a5ea640b6c8fa1125ae420999055b753 (diff)
avutil/opt: print runtime flag too
Diffstat (limited to 'libavutil/opt.c')
-rw-r--r--libavutil/opt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c
index 7c2649725f..9081a593a1 100644
--- a/libavutil/opt.c
+++ b/libavutil/opt.c
@@ -1217,6 +1217,7 @@ static void opt_list(void *obj, void *av_log_obj, const char *unit,
av_log(av_log_obj, AV_LOG_INFO, "%c", (opt->flags & AV_OPT_FLAG_EXPORT) ? 'X' : '.');
av_log(av_log_obj, AV_LOG_INFO, "%c", (opt->flags & AV_OPT_FLAG_READONLY) ? 'R' : '.');
av_log(av_log_obj, AV_LOG_INFO, "%c", (opt->flags & AV_OPT_FLAG_BSF_PARAM) ? 'B' : '.');
+ av_log(av_log_obj, AV_LOG_INFO, "%c", (opt->flags & AV_OPT_FLAG_RUNTIME_PARAM) ? 'T' : '.');
if (opt->help)
av_log(av_log_obj, AV_LOG_INFO, " %s", opt->help);