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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-19cmdutils: extend -h to allow printing codec details.Anton Khirnov
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-18cmdutils: refactor -codecs option.Anton Khirnov
Make it print a list of AVCodecDescriptors. Add new -decoders and -encoders options that print lists of decoders and encoders respectively.
2011-10-09avtools: add -v as alias for -loglevelMans Rullgard
This saves a bit of typing. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-09-11avconv: move audio_sample_fmt to options context.Anton Khirnov
Also document it and replace undocumented and inconsistent '-sample_fmt list' syntax with -sample_fmts.
2011-05-28cmdutils: remove OPT_FUNC2Stefano Sabatini
Make ff* tools only accept opt_* functions taking two arguments. The distinction between functions with one and two arguments is quite pointless. Simplify parse_options() code. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2009-12-22Implement a -pix_fmts option for listing all the supported pixelStefano Sabatini
formats. Originally committed as revision 20909 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-21Add -?, -help, and --help as alternative options to get help.Ramiro Polla
Originally committed as revision 20906 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-12Implement a -filters option, listing all the available libavfilterStefano Sabatini
filters. Currently filters are not registered, so the option will show none. Originally committed as revision 20807 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-30Factorize common commandline options definition.Stefano Sabatini
Originally committed as revision 20664 to svn://svn.ffmpeg.org/ffmpeg/trunk