summaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAge
* Remove dead target from .PHONY listMåns Rullgård2010-07-09
| | | | Originally committed as revision 24151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fate: add oneoff test for twinvqMåns Rullgård2010-07-09
| | | | Originally committed as revision 24135 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fate: add oneoff comparison methodMåns Rullgård2010-07-09
| | | | | | | | This adds the 'oneoff' comparison method. It compares two s16le pcm files with a max difference <= the fuzz factor treated as success. Default fuzz is 1. On failure, the full tiny_psnr output is printed. Originally committed as revision 24134 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fate: pass additional variables to test scriptMåns Rullgård2010-07-09
| | | | | | | | | | This passes the following additional variables to the test script: - CMP method to use comparing output with reference, default 'diff' - REF reference file, default 'tests/ref/fate/${test}' - FUZZ maximum fuzz factor in comparison, meaning depends on CMP Originally committed as revision 24133 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change names of regtest output files to closer match the reference filesMåns Rullgård2010-07-08
| | | | Originally committed as revision 24127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify regtest reference makefile dependenciesMåns Rullgård2010-07-08
| | | | Originally committed as revision 24121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move regression test dependencies to configureMåns Rullgård2010-07-08
| | | | | | This allows expressing complex dependencies more easily. Originally committed as revision 24120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Create the regtest reference files only when necessaryMåns Rullgård2010-07-08
| | | | | | | This avoid recreating the ref files every time an individual test is run from the command line. Originally committed as revision 24113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clean up make rules for calling codec test scriptsMåns Rullgård2010-07-08
| | | | Originally committed as revision 24112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Beautify make messages when generating test data filesMåns Rullgård2010-07-08
| | | | Originally committed as revision 24111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add pixdesctest filter and corresponding test.Stefano Sabatini2010-07-07
| | | | Originally committed as revision 24092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the ffmpeg and ffplay man pages show the list of lavfi filters,Stefano Sabatini2010-06-21
| | | | | | sinks and sources, and document the -vf option. Originally committed as revision 23689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update documentation dependencies, make ff* tools manpages and HTMLStefano Sabatini2010-06-21
| | | | | | pages depend of fftools-common-opts.texi. Originally committed as revision 23687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add simple rgb/yuv in avi regression test.Michael Niedermayer2010-06-06
| | | | Originally committed as revision 23501 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
* FATE: print friendly error for individual tests when SAMPLES unsetMåns Rullgård2010-05-10
| | | | Originally committed as revision 23079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Makefile: make fate target depend on compiling ffmpegVitor Sessak2010-04-19
| | | | Originally committed as revision 22912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some ad-hoc tests for libavfilter.Stefano Sabatini2010-03-17
| | | | | | | | A patched version of ffmpeg supporting video filters is required for getting this working; thus make lavfitest is supposed to work only in the libavfilter repository for now. Originally committed as revision 22586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FATE testsMåns Rullgård2010-03-15
| | | | | | | | | | | | | | This adds a "fate" make target which runs the full FATE test suite. Individual tests can be run with "make fate-$testname". The location of the FATE test samples must be specified with the --samples=PATH option to configure. The tests/fate-update.sh script regenerates the references files and test list from the online FATE database. These are checked in since generating them requires non-standard tools. Originally committed as revision 22552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix brief make output for generated tablesMåns Rullgård2010-03-14
| | | | Originally committed as revision 22526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: fix version.h generationMåns Rullgård2010-03-10
| | | | | | Note to self: always test in a clean directory Originally committed as revision 22423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make version.h depend on git changesMåns Rullgård2010-03-10
| | | | Originally committed as revision 22421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve version.h generationMåns Rullgård2010-03-10
| | | | | | | | | | | Force version.sh to run whenever the version might have changed, regardless of what is being built. This is done by attaching the dependencies to a dummy file (.version) which is included from the makefile. As make will always attempt to rebuild any included files before considering other rules, this ensures that the real version.h is (re-)created before it is required by any source file. Originally committed as revision 22420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prettify make output for documentationMåns Rullgård2010-03-10
| | | | Originally committed as revision 22418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change dir into doc/ when running texi2htmlMåns Rullgård2010-03-10
| | | | | | | This silly program always writes its output to the current directory. Changing directory is better than moving the file afterwards. Originally committed as revision 22417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* checkheaders: skip per-arch headers not meant for direct inclusionMåns Rullgård2010-03-08
| | | | | | | | Some of the per-arch headers are only meant to be used through the parent header of the same name. Testing these standalone does not make sense. Originally committed as revision 22341 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add TESTOBJS make variable for extra objects used by test appsMåns Rullgård2010-03-08
| | | | Originally committed as revision 22335 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip cmdutils_common_opts.h fragment in checkheadersMåns Rullgård2010-03-08
| | | | Originally committed as revision 22333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prettify make outputMåns Rullgård2010-03-06
| | | | | | | This gives brief messages from make by default. For full command echoing, add V=1 to make command line. Originally committed as revision 22244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add INSTALL makefile variableMåns Rullgård2010-03-06
| | | | Originally committed as revision 22242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use mkdir -p to create directoriesMåns Rullgård2010-03-06
| | | | Originally committed as revision 22241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CP make variableMåns Rullgård2010-03-06
| | | | Originally committed as revision 22240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use $(RM) to delete filesMåns Rullgård2010-03-06
| | | | Originally committed as revision 22234 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Run seektest on all generated filesMåns Rullgård2010-03-02
| | | | Originally committed as revision 22158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused argument to test scriptsMåns Rullgård2010-03-02
| | | | Originally committed as revision 22156 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FFprobe tool.Stefano Sabatini2010-02-21
| | | | | | | | | | This is a simplified / cleaned-up version of the SourceForge program: http://sourceforge.net/projects/ffprobe/ Syntax / features may be different, in particular the options -show_packets and -show_frames are not yet supported in this version. Originally committed as revision 21936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Delete avconfig.h on distcleanMåns Rullgård2010-02-20
| | | | Originally committed as revision 21920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Delete all test related files in testclean ruleMåns Rullgård2010-02-20
| | | | Originally committed as revision 21919 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Separate audio-only tests so they are only run onceMåns Rullgård2010-01-30
| | | | Originally committed as revision 21556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: fix linkingMåns Rullgård2010-01-27
| | | | | | Alphabetical order isn't always a good idea. Originally committed as revision 21472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow disabling of lavc, lavf, lavd, and lswsMåns Rullgård2010-01-26
| | | | Originally committed as revision 21468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r21226, it was a joke:Ramiro Polla2010-01-26
| | | | | | | Get one step closer to world domination. Remove "make uninstall". Originally committed as revision 21466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add rules to install generated headersMåns Rullgård2010-01-19
| | | | Originally committed as revision 21320 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regtest: run tests only for enabled codecs and formatsMåns Rullgård2010-01-16
| | | | Originally committed as revision 21256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regtest: split wma test into wmav1 and wmav2Måns Rullgård2010-01-16
| | | | Originally committed as revision 21255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regtest: split reference files allowing tests to run individuallyMåns Rullgård2010-01-16
| | | | | | | | | | | With this change, the output is checked immediately after each test has run. This means commands like "make regtest-mpeg2" can now be used to run a single test and get meaningful results. By default, make will abort if any test fails. To run all tests regardless, use make -k. Originally committed as revision 21254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get one step closer to world domination.Ramiro Polla2010-01-15
| | | | | | Remove "make uninstall". Originally committed as revision 21226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ROQ format regression test.Reimar Döffinger2009-12-12
| | | | Originally committed as revision 20811 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix make install when all of ffmpeg/ffplay/ffserver are disabledMåns Rullgård2009-11-10
| | | | Originally committed as revision 20501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow disabling doc generation with --disable-docMåns Rullgård2009-10-31
| | | | Originally committed as revision 20424 to svn://svn.ffmpeg.org/ffmpeg/trunk