mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
6df42f9874
* qatar/master: SBR DSP: fix SSE code to not use SSE2 instructions. cpu: initialize mask to -1, so that by default, optimizations are used. error_resilience: initialize s->block_index[]. svq3: protect against negative quantizers. Don't use ff_cropTbl[] for IDCT. swscale: make filterPos 32bit. FATE: add CPUFLAGS variable, mapping to -cpuflags avconv option. avconv: add -cpuflags option for setting supported cpuflags. cpu: add av_set_cpu_flags_mask(). libx264: Allow overriding the sliced threads option avconv: fix counting encoded video size. Conflicts: doc/APIchanges doc/fate.texi doc/ffmpeg.texi ffmpeg.c libavcodec/h264idct_template.c libavcodec/svq3.c libavutil/avutil.h libavutil/cpu.c libavutil/cpu.h libswscale/swscale.c tests/Makefile tests/fate-run.sh tests/regression-funcs.sh Merged-by: Michael Niedermayer <michaelni@gmx.at>
20 lines
1.5 KiB
C
20 lines
1.5 KiB
C
{ "L", OPT_EXIT, {(void*)opt_license}, "show license" },
|
|
{ "h", OPT_EXIT, {(void*)opt_help}, "show help" },
|
|
{ "?", OPT_EXIT, {(void*)opt_help}, "show help" },
|
|
{ "help", OPT_EXIT, {(void*)opt_help}, "show help" },
|
|
{ "-help", OPT_EXIT, {(void*)opt_help}, "show help" },
|
|
{ "version", OPT_EXIT, {(void*)opt_version}, "show version" },
|
|
{ "formats" , OPT_EXIT, {(void*)opt_formats }, "show available formats" },
|
|
{ "codecs" , OPT_EXIT, {(void*)opt_codecs }, "show available codecs" },
|
|
{ "bsfs" , OPT_EXIT, {(void*)opt_bsfs }, "show available bit stream filters" },
|
|
{ "protocols", OPT_EXIT, {(void*)opt_protocols}, "show available protocols" },
|
|
{ "filters", OPT_EXIT, {(void*)opt_filters }, "show available filters" },
|
|
{ "pix_fmts" , OPT_EXIT, {(void*)opt_pix_fmts }, "show available pixel formats" },
|
|
{ "sample_fmts", OPT_EXIT, {.func_arg = show_sample_fmts }, "show available audio sample formats" },
|
|
{ "loglevel", HAS_ARG, {(void*)opt_loglevel}, "set libav* logging level", "loglevel" },
|
|
{ "v", HAS_ARG, {(void*)opt_loglevel}, "set libav* logging level", "loglevel" },
|
|
{ "debug", HAS_ARG, {(void*)opt_codec_debug}, "set debug flags", "flags" },
|
|
{ "report", 0, {(void*)opt_report}, "generate a report" },
|
|
{ "max_alloc", HAS_ARG, {(void*)opt_max_alloc}, "set maximum size of a single allocated block", "bytes" },
|
|
{ "cpuflags", HAS_ARG | OPT_EXPERT, {(void*)opt_cpuflags}, "force specific cpu flags", "flags" },
|