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
2010-05-10FATE: print friendly error for individual tests when SAMPLES unsetMåns Rullgård
Originally committed as revision 23079 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-19Makefile: make fate target depend on compiling ffmpegVitor Sessak
Originally committed as revision 22912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-18Add some ad-hoc tests for libavfilter.Stefano Sabatini
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
2010-03-15Add FATE testsMåns Rullgård
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
2010-03-14Fix brief make output for generated tablesMåns Rullgård
Originally committed as revision 22526 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-1010l: fix version.h generationMåns Rullgård
Note to self: always test in a clean directory Originally committed as revision 22423 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-10Make version.h depend on git changesMåns Rullgård
Originally committed as revision 22421 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-10Improve version.h generationMåns Rullgård
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
2010-03-10Prettify make output for documentationMåns Rullgård
Originally committed as revision 22418 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-10Change dir into doc/ when running texi2htmlMåns Rullgård
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
2010-03-08checkheaders: skip per-arch headers not meant for direct inclusionMåns Rullgård
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
2010-03-08Add TESTOBJS make variable for extra objects used by test appsMåns Rullgård
Originally committed as revision 22335 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Skip cmdutils_common_opts.h fragment in checkheadersMåns Rullgård
Originally committed as revision 22333 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Prettify make outputMåns Rullgård
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
2010-03-06Add INSTALL makefile variableMåns Rullgård
Originally committed as revision 22242 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Use mkdir -p to create directoriesMåns Rullgård
Originally committed as revision 22241 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Add CP make variableMåns Rullgård
Originally committed as revision 22240 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Use $(RM) to delete filesMåns Rullgård
Originally committed as revision 22234 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-03Run seektest on all generated filesMåns Rullgård
Originally committed as revision 22158 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-03Remove unused argument to test scriptsMåns Rullgård
Originally committed as revision 22156 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-21Add FFprobe tool.Stefano Sabatini
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
2010-02-20Delete avconfig.h on distcleanMåns Rullgård
Originally committed as revision 21920 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-20Delete all test related files in testclean ruleMåns Rullgård
Originally committed as revision 21919 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-31Separate audio-only tests so they are only run onceMåns Rullgård
Originally committed as revision 21556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-2710l: fix linkingMåns Rullgård
Alphabetical order isn't always a good idea. Originally committed as revision 21472 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-27Allow disabling of lavc, lavf, lavd, and lswsMåns Rullgård
Originally committed as revision 21468 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-27Revert r21226, it was a joke:Ramiro Polla
Get one step closer to world domination. Remove "make uninstall". Originally committed as revision 21466 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-19Add rules to install generated headersMåns Rullgård
Originally committed as revision 21320 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16regtest: run tests only for enabled codecs and formatsMåns Rullgård
Originally committed as revision 21256 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16regtest: split wma test into wmav1 and wmav2Måns Rullgård
Originally committed as revision 21255 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16regtest: split reference files allowing tests to run individuallyMåns Rullgård
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
2010-01-15Get one step closer to world domination.Ramiro Polla
Remove "make uninstall". Originally committed as revision 21226 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-12Add ROQ format regression test.Reimar Döffinger
Originally committed as revision 20811 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-10Fix make install when all of ffmpeg/ffplay/ffserver are disabledMåns Rullgård
Originally committed as revision 20501 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-31Allow disabling doc generation with --disable-docMåns Rullgård
Originally committed as revision 20424 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-31Makefile cosmeticsMåns Rullgård
Originally committed as revision 20422 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-29Add generic rules for building helpers with HOSTCCMåns Rullgård
Originally committed as revision 20412 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-27Split codec-regression.sh again and create a lavfi-regression.sh forStefano Sabatini
running the libavfilter tests. Originally committed as revision 20384 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-24Split codec-regression.sh, and create the lavf-regression.sh script.Stefano Sabatini
Originally committed as revision 20365 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-21Rename vfilters.texi to libavfilter.texi, as the file is meant toStefano Sabatini
document libavfilter and not only its video filtering facilities. Originally committed as revision 20338 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-18cosmetics: Break overly long lines.Diego Biurrun
Originally committed as revision 20276 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-18Add documentation for libavfilter video filters.Stefano Sabatini
Originally committed as revision 20271 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-07Add ALAC encoding and decoding regression tests.Justin Ruggles
Originally committed as revision 20188 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-27Implement a lavfitest target for testing regressions in libavfilter.Stefano Sabatini
The target is disabled. See the thread: "[PATCH] libavfilter-soc: regression test for libavfilter". Originally committed as revision 20057 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-21Split dnxhd regression test so the parts can run in parallelMåns Rullgård
Originally committed as revision 19936 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-18Add probetest to TOOLS list.Diego Biurrun
Originally committed as revision 19909 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-18Introduce a variable for all targets in the tools subdirectory.Diego Biurrun
Originally committed as revision 19908 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-17Add dnxhd test to regression tests.Reimar Döffinger
Originally committed as revision 19895 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-10Fix typo: '.' was used instead of '/' as directory separator.Diego Biurrun
Originally committed as revision 19807 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-23Skip headers requiring external libs not present in checkheadersMåns Rullgård
Originally committed as revision 19685 to svn://svn.ffmpeg.org/ffmpeg/trunk