Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-20cmdutils: pass number of groups to split_commandline().Anton Khirnov
This makes the code simpler and avoids mixing designated and non-designated initializers in a potentially unsafe way in avconv.
2012-12-18avconv: pass the actually selected decoder to filter_codec_opts().Anton Khirnov
2012-12-18avconv: use new options parser.Anton Khirnov
2012-12-18cmdutils: add a macro to simplify grow_array() calls.Anton Khirnov
2012-11-25avconv: fix copying per-stream metadata.Anton Khirnov
It is handled separately from other types because it uses stream specifiers and currently that triggers an assert in SET_DICT. CC:libav-stable@libav.org
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
Also reorder some other #include when applicable.
2012-10-31avconv_opt, cmdutils: Add missing function parameter DoxygenDiego Biurrun
2012-10-23avconv: only apply presets when we have an encoder.Anton Khirnov
Fixes a crash when using a preset with stream copy. CC: libav-stable@libav.org
2012-10-16avconv: fix disabling auto mappings with -map_metadataAnton Khirnov
CC: libav-stable@libav.org
2012-10-12De-doxygenize some top-level filesDiego Biurrun
2012-10-10avconv: remove bogus warning when using avconv -h without parameterJanne Grunau
2012-10-09avconv: remove -same_quantAnton Khirnov
It has not worked for anything other than fringe codecs (asv1/2, mdec, mjpeg[b]) since about 2003 and nobody ever noticed or complained. This sufficiently proves that there are no users of this option who have a clue of what they are doing, so it is completely useless.
2012-10-09avconv: simplify memory allocation in copy_chaptersJanne Grunau
Make just a single reallocation per call instead of one reallocation per copied chapters. This fixes possible memory leaks on realloc failures. Also correct the allocation since it needs multiples of sizeof(AVChapter*) and not sizeof(AVChapter). Fixes CID700633 and CID700719.
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-10-02Use atexit() instead of defining a custom exit_program() interface.Diego Elio Pettenò
2012-08-30avtools: remove the distinction between func_arg and func2_arg.Anton Khirnov
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).
2012-08-30avconv: make the -passlogfile option per-stream.Anton Khirnov
2012-08-30avconv: make the -pass option per-stream.Anton Khirnov
2012-08-26avconv: remove unused variable opt_shortestMans Rullgard
This was replaced with a per-file value in 3c0df90. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-19avconv: mark more options as expert.Anton Khirnov
2012-08-19avconv: split printing "main options" into global and per-file.Anton Khirnov
2012-08-19avconv: refactor help printing.Anton Khirnov
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.
2012-08-19avconv: print info/capabilities options in a separate help group.Anton Khirnov
2012-08-19cmdutils: extend -h to allow printing codec details.Anton Khirnov
2012-08-19cmdutils: change semantics of show_help_options() and document it.Anton Khirnov
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.
2012-08-19avtools: move some newlines to show_help_options().Anton Khirnov
Don't require every caller to supply them.
2012-08-19avconv: deprecate -isync.Anton Khirnov
This option does not do anything. Also remove OPT_GRAB, since -isync is the last option using it.
2012-08-19avconv: reformat the options table.Anton Khirnov
2012-08-19avconv: get rid of ugly casts in the options table.Anton Khirnov
2012-08-19avconv: try to match codecs by codec descriptor name as a last resort.Anton Khirnov
This allows e.g. -c:v h264 to select the libx264 encoder.
2012-08-19avtools: fix show_foo() signatures.Anton Khirnov
show_foo() functions are declared as void show_foo(void), but called as int show_foo(const char*, const char*).
2012-08-18avconv: make -shortest a per-output file option.Anton Khirnov
2012-08-08avconv: split option parsing into a separate file.Anton Khirnov