FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cmdutils_common_opts.h
Go to the documentation of this file.
1  { "L" , OPT_EXIT, {.func_arg = show_license}, "show license" },
2  { "h" , OPT_EXIT, {.func_arg = show_help}, "show help", "topic" },
3  { "?" , OPT_EXIT, {.func_arg = show_help}, "show help", "topic" },
4  { "help" , OPT_EXIT, {.func_arg = show_help}, "show help", "topic" },
5  { "-help" , OPT_EXIT, {.func_arg = show_help}, "show help", "topic" },
6  { "version" , OPT_EXIT, {.func_arg = show_version}, "show version" },
7  { "buildconf" , OPT_EXIT, {.func_arg = show_buildconf}, "show build configuration" },
8  { "formats" , OPT_EXIT, {.func_arg = show_formats }, "show available formats" },
9  { "codecs" , OPT_EXIT, {.func_arg = show_codecs }, "show available codecs" },
10  { "decoders" , OPT_EXIT, {.func_arg = show_decoders }, "show available decoders" },
11  { "encoders" , OPT_EXIT, {.func_arg = show_encoders }, "show available encoders" },
12  { "bsfs" , OPT_EXIT, {.func_arg = show_bsfs }, "show available bit stream filters" },
13  { "protocols" , OPT_EXIT, {.func_arg = show_protocols}, "show available protocols" },
14  { "filters" , OPT_EXIT, {.func_arg = show_filters }, "show available filters" },
15  { "pix_fmts" , OPT_EXIT, {.func_arg = show_pix_fmts }, "show available pixel formats" },
16  { "layouts" , OPT_EXIT, {.func_arg = show_layouts }, "show standard channel layouts" },
17  { "sample_fmts", OPT_EXIT, {.func_arg = show_sample_fmts }, "show available audio sample formats" },
18  { "colors" , OPT_EXIT, {.func_arg = show_colors }, "show available color names" },
19  { "loglevel" , HAS_ARG, {.func_arg = opt_loglevel}, "set logging level", "loglevel" },
20  { "v", HAS_ARG, {.func_arg = opt_loglevel}, "set logging level", "loglevel" },
21  { "report" , 0, {(void*)opt_report}, "generate a report" },
22  { "max_alloc" , HAS_ARG, {.func_arg = opt_max_alloc}, "set maximum size of a single allocated block", "bytes" },
23  { "cpuflags" , HAS_ARG | OPT_EXPERT, { .func_arg = opt_cpuflags }, "force specific cpu flags", "flags" },
24  { "hide_banner", OPT_BOOL | OPT_EXPERT, {&hide_banner}, "do not show program banner", "hide_banner" },
25 #if CONFIG_OPENCL
26  { "opencl_bench", OPT_EXIT, {.func_arg = opt_opencl_bench}, "run benchmark on all OpenCL devices and show results" },
27  { "opencl_options", HAS_ARG, {.func_arg = opt_opencl}, "set OpenCL environment options" },
28 #endif