summaryrefslogtreecommitdiff
path: root/tools
Commit message (Collapse)AuthorAge
* Set the correct type for the output links.Stefano Sabatini2010-08-17
| | | | Originally committed as revision 24810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change avfilter_open() signature, from:Stefano Sabatini2010-08-11
| | | | | | | | | | | 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
* showfiltfmts: destroy filter context before exitMåns Rullgård2010-08-06
| | | | Originally committed as revision 24722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* showfiltfmts: set media type of links to that of corresponding padMåns Rullgård2010-08-06
| | | | Originally committed as revision 24721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Issue a warning when fed with misformatted one-line doxygen comments.Benoit Fouet2010-08-02
| | | | Originally committed as revision 24660 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lavfi-showfiltfmts: print one format per lineMåns Rullgård2010-08-01
| | | | Originally committed as revision 24647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn about "/** text" comments.Michael Niedermayer2010-07-28
| | | | Originally committed as revision 24574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Accept stdin as input for patcheck.Rafaël Carré2010-07-25
| | | | | | Patch by Rafaël Carré, rafael d carre a gmail Originally committed as revision 24499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* grep Changelog entry from unified diffsRafaël Carré2010-07-15
| | | | | | Patch by Rafaël Carré, rafael d carre a gmail Originally committed as revision 24248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for doxy filetag with filenameMichael Niedermayer2010-07-02
| | | | Originally committed as revision 23975 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add patcheck checks for assignments that look like compound assignmentsEli Friedman2010-06-28
| | | | | | Patch by Eli Friedman, eli dot friedman at gmail Originally committed as revision 23841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fail if input and output are the sameBaptiste Coudurier2010-06-21
| | | | Originally committed as revision 23672 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve rule for possibly never read variables.Benoit Fouet2010-06-11
| | | | Originally committed as revision 23578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add libavfilter 1-input - 1-output regression test, corresponding to theStefano Sabatini2010-05-24
| | | | | | | | | | 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
* qt-faststart: Abort scanning of the input file if a badly sized atom is ↵Martin Storsjö2010-05-13
| | | | | | | | | 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
* Cosmetics: Initialize pointers with NULL instead of 0, for consistencyMartin Storsjö2010-05-13
| | | | Originally committed as revision 23127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindentMartin Storsjö2010-05-13
| | | | Originally committed as revision 23126 to svn://svn.ffmpeg.org/ffmpeg/trunk
* qt-faststart: Use the error_out cleanup code path for all error returnsMartin Storsjö2010-05-13
| | | | Originally committed as revision 23125 to svn://svn.ffmpeg.org/ffmpeg/trunk
* qt-faststart: Avoid leaking memory if encountering a file with double ftyp atomsMartin Storsjö2010-05-09
| | | | Originally committed as revision 23065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* qt-faststart: Free ftyp_atom at all exit pointsMartin Storsjö2010-05-01
| | | | Originally committed as revision 23008 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after the previous commitMartin Storsjö2010-05-01
| | | | Originally committed as revision 23007 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary checks before calling freeMartin Storsjö2010-05-01
| | | | | | | 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
* Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas2010-03-31
| | | | | | Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* patcheck: Escape parentheses in grep callsDaniel Verkamp2010-03-15
| | | | Originally committed as revision 22563 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing stdlib.h #include, fixes the warnings:Diego Biurrun2010-03-08
| | | | | | | 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
* Remove apparently unneeded define and includes.Michael Niedermayer2010-03-06
| | | | Originally committed as revision 22229 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make trasher use a well defined random number generator and allow the seed ↵Michael Niedermayer2010-03-06
| | | | | | to be specified on the cmd line. Originally committed as revision 22228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add the graph2dot tools and document it.Stefano Sabatini2010-02-25
| | | | | | | 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
* patcheck: check that pix_fmt etc. initializers are constReimar Döffinger2009-11-09
| | | | Originally committed as revision 20493 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop argc/argv parameters from main(), they are unused.Diego Biurrun2009-09-18
| | | | Originally committed as revision 19907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: K&R coding style, prettyprintingDiego Biurrun2009-09-18
| | | | Originally committed as revision 19906 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Init i to 0 (10l fix).Martin Storsjö2009-09-15
| | | | | | Patch by Martin Storsjö / martin von martin aus st Originally committed as revision 19855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Probetest, to test the demuxers probe functions against random and not so randomMichael Niedermayer2009-09-15
| | | | | | input. Originally committed as revision 19853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print atom info during parsing, patch by Frank Barchard, fbarchard at google ↵Frank Barchard2009-07-15
| | | | | | dot com Originally committed as revision 19435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not fail if 'uuid' atom is encountered before 'moov'.Frank Barchard2009-07-06
| | | | | | Patch by Frank Barchard, fbarchard at google dot com. Originally committed as revision 19354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use slightly more appropriate format strings for printing decimal values.Frank Barchard2009-07-01
| | | | | | patch by Frank Barchard, fbarchard google com Originally committed as revision 19315 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use more portable 'PRId64' instead of 'llx' as conversion/length specifier.Frank Barchard2009-06-30
| | | | | | patch by Frank Barchard, fbarchard google com Originally committed as revision 19309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use new packet reading API, fixes a memory leak.Zdenek Kabelac2009-05-01
| | | | | | patch by Zdenek Kabelac, zdenek.kabelac gmail com Originally committed as revision 18728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for INIT_VLC_USE_STATICMichael Niedermayer2009-03-27
| | | | Originally committed as revision 18200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add _XOPEN_SOURCE #define. This is necessary for (s)random(), which are XSIDiego Biurrun2009-03-24
| | | | | | extensions of POSIX. Avoids implicit declaration warnings on some systems. Originally committed as revision 18178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* patcheck: Replace non-POSIX echo -e with printf.Alex Converse2009-03-11
| | | | Originally committed as revision 17943 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Detect static prototypes.Michael Niedermayer2009-02-27
| | | | Originally committed as revision 17649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve detection of non doxy comments.Michael Niedermayer2009-02-27
| | | | Originally committed as revision 17648 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix misdetection of #else in 'missing } prior to else'.Michael Niedermayer2009-02-27
| | | | Originally committed as revision 17647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Search for things like "int *src" without const.Michael Niedermayer2009-02-22
| | | | Originally committed as revision 17529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix @param[in/out] handlingMichael Niedermayer2009-02-17
| | | | Originally committed as revision 17395 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for duplicate const/static/inline.Michael Niedermayer2009-02-09
| | | | Originally committed as revision 17101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix reserved identifer detection so it doesnt detect __asm and such.Michael Niedermayer2009-02-08
| | | | Originally committed as revision 17057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize grep -v cases.Michael Niedermayer2009-02-08
| | | | Originally committed as revision 17056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Patch check script.Michael Niedermayer2009-02-08
| | | | | | | Note, before you flame me that its dirty, i did post it to ffmpeg-dev and asked for a review and threatened to commit. Originally committed as revision 17055 to svn://svn.ffmpeg.org/ffmpeg/trunk