Commit 3eef1d5b authored by stefano's avatar stefano

Cosmetics: use consistent spacing in the ffprobe.c options table.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22212 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7b59eb89
...@@ -318,8 +318,8 @@ static void opt_pretty(void) ...@@ -318,8 +318,8 @@ static void opt_pretty(void)
static const OptionDef options[] = { static const OptionDef options[] = {
#include "cmdutils_common_opts.h" #include "cmdutils_common_opts.h"
{ "f", HAS_ARG, {(void*)opt_format}, "force format", "format" }, { "f", HAS_ARG, {(void*)opt_format}, "force format", "format" },
{ "unit", OPT_BOOL, {(void*)&show_value_unit}, "show unit of the displayed values" }, { "unit", OPT_BOOL, {(void*)&show_value_unit}, "show unit of the displayed values" },
{ "prefix", OPT_BOOL, {(void*)&use_value_prefix}, "use SI prefixes for the displayed values" }, { "prefix", OPT_BOOL, {(void*)&use_value_prefix}, "use SI prefixes for the displayed values" },
{ "byte_binary_prefix", OPT_BOOL, {(void*)&use_byte_value_binary_prefix}, { "byte_binary_prefix", OPT_BOOL, {(void*)&use_byte_value_binary_prefix},
"use binary prefixes for byte units" }, "use binary prefixes for byte units" },
{ "sexagesimal", OPT_BOOL, {(void*)&use_value_sexagesimal_format}, { "sexagesimal", OPT_BOOL, {(void*)&use_value_sexagesimal_format},
...@@ -327,7 +327,7 @@ static const OptionDef options[] = { ...@@ -327,7 +327,7 @@ static const OptionDef options[] = {
{ "pretty", 0, {(void*)&opt_pretty}, { "pretty", 0, {(void*)&opt_pretty},
"prettify the format of displayed values, make it more human readable" }, "prettify the format of displayed values, make it more human readable" },
{ "show_format", OPT_BOOL, {(void*)&do_show_format} , "show format/container info" }, { "show_format", OPT_BOOL, {(void*)&do_show_format} , "show format/container info" },
{ "show_streams", OPT_BOOL, {(void*)&do_show_streams}, "show streams info" }, { "show_streams", OPT_BOOL, {(void*)&do_show_streams}, "show streams info" },
{ NULL, }, { NULL, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment