[FFmpeg-devel] [PATCH 3/4] fftools/ffmpeg: dump AVFilterGraph options in "ffmpeg -h full".

Jun Zhao mypopydev at gmail.com
Mon Aug 13 16:51:46 EEST 2018


dump AVFilterGraph options in "ffmpeg -h full".

Signed-off-by: Jun Zhao <mypopydev at gmail.com>
---
 fftools/ffmpeg_opt.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c
index 58ec13e..6b5e8db 100644
--- a/fftools/ffmpeg_opt.c
+++ b/fftools/ffmpeg_opt.c
@@ -3175,6 +3175,7 @@ void show_help_default(const char *opt, const char *arg)
         show_help_children(swr_get_class(), AV_OPT_FLAG_AUDIO_PARAM);
 #endif
         show_help_children(avfilter_get_class(), AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM);
+        show_help_children(avfilter_graph_get_class(), AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM);
         show_help_children(av_bsf_get_class(), AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_BSF_PARAM);
     }
 }
-- 
1.7.1



More information about the ffmpeg-devel mailing list