summaryrefslogtreecommitdiff
path: root/avconv_opt.c
Commit message (Collapse)AuthorAge
* Use atexit() instead of defining a custom exit_program() interface.Diego Elio Pettenò2012-10-01
|
* avtools: remove the distinction between func_arg and func2_arg.Anton Khirnov2012-08-30
| | | | | | func2_arg is the same as func_arg, except it has one additional parameter. Change all func_arg callbacks to take that parameter (and ignore it).
* avconv: make the -passlogfile option per-stream.Anton Khirnov2012-08-30
|
* avconv: make the -pass option per-stream.Anton Khirnov2012-08-30
|
* avconv: remove unused variable opt_shortestMans Rullgard2012-08-25
| | | | | | This was replaced with a per-file value in 3c0df90. Signed-off-by: Mans Rullgard <mans@mansr.com>
* avconv: mark more options as expert.Anton Khirnov2012-08-19
|
* avconv: split printing "main options" into global and per-file.Anton Khirnov2012-08-19
|
* avconv: refactor help printing.Anton Khirnov2012-08-19
| | | | | | | By default don't dump every single option on the user, but print only the basic options. Add -h long/full to print more options.
* avconv: print info/capabilities options in a separate help group.Anton Khirnov2012-08-19
|
* cmdutils: extend -h to allow printing codec details.Anton Khirnov2012-08-19
|
* cmdutils: change semantics of show_help_options() and document it.Anton Khirnov2012-08-19
| | | | | | | | Currently it takes a mask and value, such that options for which (flags & mask) == value. Change it to take required flags and forbidden flags instead. This is shorter and simpler to understand.
* avtools: move some newlines to show_help_options().Anton Khirnov2012-08-19
| | | | Don't require every caller to supply them.
* avconv: deprecate -isync.Anton Khirnov2012-08-19
| | | | | | This option does not do anything. Also remove OPT_GRAB, since -isync is the last option using it.
* avconv: reformat the options table.Anton Khirnov2012-08-19
|
* avconv: get rid of ugly casts in the options table.Anton Khirnov2012-08-19
|
* avconv: try to match codecs by codec descriptor name as a last resort.Anton Khirnov2012-08-19
| | | | This allows e.g. -c:v h264 to select the libx264 encoder.
* avtools: fix show_foo() signatures.Anton Khirnov2012-08-19
| | | | | show_foo() functions are declared as void show_foo(void), but called as int show_foo(const char*, const char*).
* avconv: make -shortest a per-output file option.Anton Khirnov2012-08-18
|
* avconv: split option parsing into a separate file.Anton Khirnov2012-08-08