]> git.sesse.net Git - ffmpeg/commitdiff
fftools/cmdutils: Fix break command dump for -map option
authorJun Zhao <barryjzhao@tencent.com>
Thu, 12 Dec 2019 08:02:53 +0000 (16:02 +0800)
committerJun Zhao <barryjzhao@tencent.com>
Mon, 23 Dec 2019 01:46:51 +0000 (09:46 +0800)
Before this fix, ffmpeg -h full | grep map get the command dump
like:

-map [-]input_file_id[:stream_specifier][,sync_file_id[:stream_s  set input stream mapping
                                                               ^
                                                               |
    truncated
after this fix, we can get full option dump.

Found-by: vacingfang <vacingfang@tencent.com>
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
fftools/cmdutils.c

index fe903fa4dadfbd959aa02d604cf52fe0ba4bd615..e4f4861d66a2d5b9f49b4b271ac68f8b0b6615e7 100644 (file)
@@ -182,7 +182,7 @@ void show_help_options(const OptionDef *options, const char *msg, int req_flags,
 
     first = 1;
     for (po = options; po->name; po++) {
-        char buf[64];
+        char buf[128];
 
         if (((po->flags & req_flags) != req_flags) ||
             (alt_flags && !(po->flags & alt_flags)) ||