2012-08-11 14:13:54 +00:00
|
|
|
{ "L" , OPT_EXIT, {.func_arg = show_license}, "show license" },
|
2012-08-13 18:06:25 +00:00
|
|
|
{ "h" , OPT_EXIT, {.func_arg = show_help}, "show help", "topic" },
|
|
|
|
{ "?" , OPT_EXIT, {.func_arg = show_help}, "show help", "topic" },
|
|
|
|
{ "help" , OPT_EXIT, {.func_arg = show_help}, "show help", "topic" },
|
|
|
|
{ "-help" , OPT_EXIT, {.func_arg = show_help}, "show help", "topic" },
|
2012-08-11 14:13:54 +00:00
|
|
|
{ "version" , OPT_EXIT, {.func_arg = show_version}, "show version" },
|
2013-08-11 16:17:57 +00:00
|
|
|
{ "buildconf" , OPT_EXIT, {.func_arg = show_buildconf}, "show build configuration" },
|
2012-08-11 14:13:54 +00:00
|
|
|
{ "formats" , OPT_EXIT, {.func_arg = show_formats }, "show available formats" },
|
2014-05-27 21:04:52 +00:00
|
|
|
{ "devices" , OPT_EXIT, {.func_arg = show_devices }, "show available devices" },
|
2012-08-11 14:13:54 +00:00
|
|
|
{ "codecs" , OPT_EXIT, {.func_arg = show_codecs }, "show available codecs" },
|
|
|
|
{ "decoders" , OPT_EXIT, {.func_arg = show_decoders }, "show available decoders" },
|
|
|
|
{ "encoders" , OPT_EXIT, {.func_arg = show_encoders }, "show available encoders" },
|
|
|
|
{ "bsfs" , OPT_EXIT, {.func_arg = show_bsfs }, "show available bit stream filters" },
|
|
|
|
{ "protocols" , OPT_EXIT, {.func_arg = show_protocols}, "show available protocols" },
|
|
|
|
{ "filters" , OPT_EXIT, {.func_arg = show_filters }, "show available filters" },
|
|
|
|
{ "pix_fmts" , OPT_EXIT, {.func_arg = show_pix_fmts }, "show available pixel formats" },
|
2012-07-29 22:34:01 +00:00
|
|
|
{ "layouts" , OPT_EXIT, {.func_arg = show_layouts }, "show standard channel layouts" },
|
2011-08-31 06:51:15 +00:00
|
|
|
{ "sample_fmts", OPT_EXIT, {.func_arg = show_sample_fmts }, "show available audio sample formats" },
|
2013-10-17 17:04:16 +00:00
|
|
|
{ "colors" , OPT_EXIT, {.func_arg = show_colors }, "show available color names" },
|
2013-03-31 11:39:48 +00:00
|
|
|
{ "loglevel" , HAS_ARG, {.func_arg = opt_loglevel}, "set logging level", "loglevel" },
|
|
|
|
{ "v", HAS_ARG, {.func_arg = opt_loglevel}, "set logging level", "loglevel" },
|
2012-08-20 13:48:21 +00:00
|
|
|
{ "report" , 0, {(void*)opt_report}, "generate a report" },
|
|
|
|
{ "max_alloc" , HAS_ARG, {.func_arg = opt_max_alloc}, "set maximum size of a single allocated block", "bytes" },
|
2013-10-22 17:01:36 +00:00
|
|
|
{ "cpuflags" , HAS_ARG | OPT_EXPERT, { .func_arg = opt_cpuflags }, "force specific cpu flags", "flags" },
|
2013-12-28 04:18:39 +00:00
|
|
|
{ "hide_banner", OPT_BOOL | OPT_EXPERT, {&hide_banner}, "do not show program banner", "hide_banner" },
|
2013-04-11 14:07:46 +00:00
|
|
|
#if CONFIG_OPENCL
|
2013-12-09 03:01:00 +00:00
|
|
|
{ "opencl_bench", OPT_EXIT, {.func_arg = opt_opencl_bench}, "run benchmark on all OpenCL devices and show results" },
|
2013-04-11 12:16:29 +00:00
|
|
|
{ "opencl_options", HAS_ARG, {.func_arg = opt_opencl}, "set OpenCL environment options" },
|
2013-04-11 14:07:46 +00:00
|
|
|
#endif
|
2014-08-06 22:45:26 +00:00
|
|
|
#if CONFIG_AVDEVICE
|
|
|
|
{ "sources" , OPT_EXIT | HAS_ARG, { .func_arg = show_sources },
|
|
|
|
"list sources of the input device", "device" },
|
|
|
|
{ "sinks" , OPT_EXIT | HAS_ARG, { .func_arg = show_sinks },
|
|
|
|
"list sinks of the output device", "device" },
|
|
|
|
#endif
|