mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-03 13:32:10 +00:00
4e6fa5be3c
This reverts commit 841bf0ef240f0d862b1f07076e079829456fb117. This does not fully work as the file is used before the filename is parsed so not all information is written in the specified file.
24 lines
2.1 KiB
C
24 lines
2.1 KiB
C
{ "L" , OPT_EXIT, {.func_arg = show_license}, "show license" },
|
|
{ "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" },
|
|
{ "version" , OPT_EXIT, {.func_arg = show_version}, "show version" },
|
|
{ "formats" , OPT_EXIT, {.func_arg = show_formats }, "show available formats" },
|
|
{ "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" },
|
|
{ "layouts" , OPT_EXIT, {.func_arg = show_layouts }, "show standard channel layouts" },
|
|
{ "sample_fmts", OPT_EXIT, {.func_arg = show_sample_fmts }, "show available audio sample formats" },
|
|
{ "loglevel" , HAS_ARG, {.func_arg = opt_loglevel}, "set libav* logging level", "loglevel" },
|
|
{ "v", HAS_ARG, {.func_arg = opt_loglevel}, "set libav* logging level", "loglevel" },
|
|
{ "debug" , HAS_ARG, {.func_arg = opt_codec_debug}, "set debug flags", "flags" },
|
|
{ "fdebug" , HAS_ARG, {.func_arg = opt_codec_debug}, "set debug flags", "flags" },
|
|
{ "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" },
|
|
{ "cpuflags" , HAS_ARG | OPT_EXPERT, {.func_arg = opt_cpuflags}, "force specific cpu flags", "flags" },
|