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
path: root/tools
AgeCommit message (Collapse)Author
2010-10-15probetest: replace usage of deprecated first_iformat by av_iformat_next()Aurelien Jacobs
Originally committed as revision 25490 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-11Make graph2dot print information related to the link timebase.Stefano Sabatini
Originally committed as revision 25442 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-10Clarify whitespace nitpicks in patcheck.Michael Niedermayer
Originally committed as revision 25435 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-09Tool to analyze multimedia files and create directories and symlinks for theMichael Niedermayer
container type and codecs in each file that point back to the file. Originally committed as revision 25428 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-08Check for more 'indent -kr' whitespace details.Michael Niedermayer
Originally committed as revision 25417 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-17Set the correct type for the output links.Stefano Sabatini
Originally committed as revision 24810 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-11Change avfilter_open() signature, from:Stefano Sabatini
AVFilterContext *avfilter_open(AVFilter *filter, const char *inst_name); to: int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name); This way it is possible to propagate an error code telling the reason of the failure. Originally committed as revision 24765 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-07showfiltfmts: destroy filter context before exitMåns Rullgård
Originally committed as revision 24722 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-07showfiltfmts: set media type of links to that of corresponding padMåns Rullgård
Originally committed as revision 24721 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-02Issue a warning when fed with misformatted one-line doxygen comments.Benoit Fouet
Originally committed as revision 24660 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-01lavfi-showfiltfmts: print one format per lineMåns Rullgård
Originally committed as revision 24647 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-28Warn about "/** text" comments.Michael Niedermayer
Originally committed as revision 24574 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-25Accept stdin as input for patcheck.Rafaël Carré
Patch by Rafaël Carré, rafael d carre a gmail Originally committed as revision 24499 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-15grep Changelog entry from unified diffsRafaël Carré
Patch by Rafaël Carré, rafael d carre a gmail Originally committed as revision 24248 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-02Check for doxy filetag with filenameMichael Niedermayer
Originally committed as revision 23975 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-28Add patcheck checks for assignments that look like compound assignmentsEli Friedman
Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23841 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-21fail if input and output are the sameBaptiste Coudurier
Originally committed as revision 23672 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-11Improve rule for possibly never read variables.Benoit Fouet
Originally committed as revision 23578 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-25Add libavfilter 1-input - 1-output regression test, corresponding to theStefano Sabatini
target regtest-lavfi_pix_fmts. The lavfi_pix_fmts test is disabled, this because there are many tests which are failing, and there are still some output files which cannot be played by NUT/ffplay. Originally committed as revision 23297 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-13qt-faststart: Abort scanning of the input file if a badly sized atom is ↵Martin Storsjö
encountered If the atom size is 0, qt-faststart currently hangs forever while scanning the file. Originally committed as revision 23129 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-13Cosmetics: Initialize pointers with NULL instead of 0, for consistencyMartin Storsjö
Originally committed as revision 23127 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-13Cosmetics: reindentMartin Storsjö
Originally committed as revision 23126 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-13qt-faststart: Use the error_out cleanup code path for all error returnsMartin Storsjö
Originally committed as revision 23125 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-09qt-faststart: Avoid leaking memory if encountering a file with double ftyp atomsMartin Storsjö
Originally committed as revision 23065 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-02qt-faststart: Free ftyp_atom at all exit pointsMartin Storsjö
Originally committed as revision 23008 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-02Reindent after the previous commitMartin Storsjö
Originally committed as revision 23007 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-02Remove unnecessary checks before calling freeMartin Storsjö
Feel free to revert if you can specify a concrete case where this actually is necessary. Originally committed as revision 23006 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas
Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-16patcheck: Escape parentheses in grep callsDaniel Verkamp
Originally committed as revision 22563 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Add missing stdlib.h #include, fixes the warnings:Diego Biurrun
tools/trasher.c:44: warning: implicit declaration of function ‘atoi’ tools/trasher.c:53: warning: implicit declaration of function ‘abs’ Originally committed as revision 22328 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Remove apparently unneeded define and includes.Michael Niedermayer
Originally committed as revision 22229 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Make trasher use a well defined random number generator and allow the seed ↵Michael Niedermayer
to be specified on the cmd line. Originally committed as revision 22228 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-25Add the graph2dot tools and document it.Stefano Sabatini
Also link avfiltergraph.o and graphparser.o against libavfilter, as it uses them. Originally committed as revision 22063 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-10patcheck: check that pix_fmt etc. initializers are constReimar Döffinger
Originally committed as revision 20493 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-18Drop argc/argv parameters from main(), they are unused.Diego Biurrun
Originally committed as revision 19907 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-18cosmetics: K&R coding style, prettyprintingDiego Biurrun
Originally committed as revision 19906 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-15Init i to 0 (10l fix).Martin Storsjö
Patch by Martin Storsjö / martin von martin aus st Originally committed as revision 19855 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-15Probetest, to test the demuxers probe functions against random and not so randomMichael Niedermayer
input. Originally committed as revision 19853 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-15print atom info during parsing, patch by Frank Barchard, fbarchard at google ↵Frank Barchard
dot com Originally committed as revision 19435 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-06Do not fail if 'uuid' atom is encountered before 'moov'.Frank Barchard
Patch by Frank Barchard, fbarchard at google dot com. Originally committed as revision 19354 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-01Use slightly more appropriate format strings for printing decimal values.Frank Barchard
patch by Frank Barchard, fbarchard google com Originally committed as revision 19315 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-30Use more portable 'PRId64' instead of 'llx' as conversion/length specifier.Frank Barchard
patch by Frank Barchard, fbarchard google com Originally committed as revision 19309 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-02Use new packet reading API, fixes a memory leak.Zdenek Kabelac
patch by Zdenek Kabelac, zdenek.kabelac gmail com Originally committed as revision 18728 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-27Check for INIT_VLC_USE_STATICMichael Niedermayer
Originally committed as revision 18200 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-24Add _XOPEN_SOURCE #define. This is necessary for (s)random(), which are XSIDiego Biurrun
extensions of POSIX. Avoids implicit declaration warnings on some systems. Originally committed as revision 18178 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-11patcheck: Replace non-POSIX echo -e with printf.Alex Converse
Originally committed as revision 17943 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-28Detect static prototypes.Michael Niedermayer
Originally committed as revision 17649 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-28Improve detection of non doxy comments.Michael Niedermayer
Originally committed as revision 17648 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-27Fix misdetection of #else in 'missing } prior to else'.Michael Niedermayer
Originally committed as revision 17647 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-22Search for things like "int *src" without const.Michael Niedermayer
Originally committed as revision 17529 to svn://svn.ffmpeg.org/ffmpeg/trunk