mirror of https://git.ffmpeg.org/ffmpeg.git
Let ffplay support "-version".
Patch by: Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13208 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
392f227393
commit
1b068b2984
|
@ -31,6 +31,8 @@ ffplay [options] @file{input_file}
|
||||||
@table @option
|
@table @option
|
||||||
@item -h
|
@item -h
|
||||||
show help
|
show help
|
||||||
|
@item -version
|
||||||
|
show version
|
||||||
@item -x @var{width}
|
@item -x @var{width}
|
||||||
force displayed width
|
force displayed width
|
||||||
@item -y @var{height}
|
@item -y @var{height}
|
||||||
|
|
7
ffplay.c
7
ffplay.c
|
@ -2438,8 +2438,15 @@ static void opt_show_help(void)
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void opt_show_version(void)
|
||||||
|
{
|
||||||
|
show_version(program_name);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
static const OptionDef options[] = {
|
static const OptionDef options[] = {
|
||||||
{ "h", 0, {(void*)opt_show_help}, "show help" },
|
{ "h", 0, {(void*)opt_show_help}, "show help" },
|
||||||
|
{ "version", 0, {(void*)opt_show_version}, "show version" },
|
||||||
{ "x", HAS_ARG | OPT_FUNC2, {(void*)opt_width}, "force displayed width", "width" },
|
{ "x", HAS_ARG | OPT_FUNC2, {(void*)opt_width}, "force displayed width", "width" },
|
||||||
{ "y", HAS_ARG | OPT_FUNC2, {(void*)opt_height}, "force displayed height", "height" },
|
{ "y", HAS_ARG | OPT_FUNC2, {(void*)opt_height}, "force displayed height", "height" },
|
||||||
{ "s", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_size}, "set frame size (WxH or abbreviation)", "size" },
|
{ "s", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_size}, "set frame size (WxH or abbreviation)", "size" },
|
||||||
|
|
Loading…
Reference in New Issue