diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-08 12:56:55 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-14 11:28:54 +0200 |
commit | c109dfc1b1946964a19ad3beee73db6d9c95d940 (patch) | |
tree | 06550165f6e44c798886369c977caded1eb91f1b /libavutil | |
parent | a918b833a5ea640b6c8fa1125ae420999055b753 (diff) | |
download | ffmpeg-c109dfc1b1946964a19ad3beee73db6d9c95d940.tar.gz |
avutil/opt: print runtime flag too
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/opt.c | 1 |
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); |