diff options
author | Jun Zhao <mypopydev@gmail.com> | 2018-03-14 10:05:05 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-03-16 02:09:59 +0100 |
commit | 7b5cf0a410760bbd516d5c72cbb867c45017f9a7 (patch) | |
tree | 6fc6050ffc6b0a94939e984c3bfb5637c9a17cdb /libavutil/opt.c | |
parent | e0e72539cf5cb9d83cd13434f3be7b80e7ca84e4 (diff) | |
download | ffmpeg-7b5cf0a410760bbd516d5c72cbb867c45017f9a7.tar.gz |
lavu/opt: add bit stream filter option dump support.
enable dump bit stream filter and update opt fate test ref.
Signed-off-by: Jun Zhao <mypopydev@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil/opt.c')
-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 df88663e3f..3b0aab4ee8 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -1181,6 +1181,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_SUBTITLE_PARAM) ? 'S' : '.'); 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' : '.'); if (opt->help) av_log(av_log_obj, AV_LOG_INFO, " %s", opt->help); |