mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
fftools/ffmpeg_opt: refine printing type-specific options
* filter subtitle/data options out of main, video and audio sections * add filters that were missing entirely from the subtitle section * add a missing section for advanced subtitle options
This commit is contained in:
parent
0125cab385
commit
74df1b73d4
@ -1216,25 +1216,29 @@ void show_help_default(const char *opt, const char *arg)
|
||||
OPT_PERFILE | OPT_EXIT, 0);
|
||||
|
||||
show_help_options(options, "Per-file main options:", 0,
|
||||
OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE |
|
||||
OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE | OPT_DATA |
|
||||
OPT_EXIT, OPT_PERFILE);
|
||||
if (show_advanced)
|
||||
show_help_options(options, "Advanced per-file options:",
|
||||
OPT_EXPERT, OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE, OPT_PERFILE);
|
||||
|
||||
show_help_options(options, "Video options:",
|
||||
OPT_VIDEO, OPT_EXPERT | OPT_AUDIO, 0);
|
||||
OPT_VIDEO, OPT_EXPERT | OPT_AUDIO | OPT_SUBTITLE | OPT_DATA, 0);
|
||||
if (show_advanced)
|
||||
show_help_options(options, "Advanced Video options:",
|
||||
OPT_EXPERT | OPT_VIDEO, OPT_AUDIO, 0);
|
||||
OPT_EXPERT | OPT_VIDEO, OPT_AUDIO | OPT_SUBTITLE | OPT_DATA, 0);
|
||||
|
||||
show_help_options(options, "Audio options:",
|
||||
OPT_AUDIO, OPT_EXPERT | OPT_VIDEO, 0);
|
||||
OPT_AUDIO, OPT_EXPERT | OPT_VIDEO | OPT_SUBTITLE | OPT_DATA, 0);
|
||||
if (show_advanced)
|
||||
show_help_options(options, "Advanced Audio options:",
|
||||
OPT_EXPERT | OPT_AUDIO, OPT_VIDEO, 0);
|
||||
OPT_EXPERT | OPT_AUDIO, OPT_VIDEO | OPT_SUBTITLE | OPT_DATA, 0);
|
||||
|
||||
show_help_options(options, "Subtitle options:",
|
||||
OPT_SUBTITLE, 0, 0);
|
||||
OPT_SUBTITLE, OPT_EXPERT | OPT_VIDEO | OPT_AUDIO | OPT_DATA, 0);
|
||||
if (show_advanced)
|
||||
show_help_options(options, "Advanced Subtitle options:",
|
||||
OPT_EXPERT | OPT_SUBTITLE, OPT_VIDEO | OPT_AUDIO | OPT_DATA, 0);
|
||||
printf("\n");
|
||||
|
||||
if (show_avoptions) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user