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
2014-08-04fate: explicitly set the default THREADS valueJanne Grunau
This makes the default of '1' more explicit than defaulting to '1' in fate-run.sh and regression-funcs.sh if THREADS is not set. Fixes the reported thread count in fate-cpu if THREADS is not set.
2014-08-01fate: Split fate-pixdesc tests and dispatch them through MakeDiego Biurrun
This allows running all the tests individually and/or in parallel.
2014-05-15lavc: add a native Opus decoder.Anton Khirnov
Initial implementation by Andrew D'Addesio <modchipv12@gmail.com> during GSoC 2012. Completion by Anton Khirnov <anton@khirnov.net>, sponsored by the Mozilla Corporation. Further contributions by: Christophe Gisquet <christophe.gisquet@gmail.com> Janne Grunau <janne-libav@jannau.net> Luca Barbato <lu_zero@gentoo.org>
2014-01-31fate: add xvid test for custom matricesJanne Grunau
Test sample is made from the sample in Bug-Id: videolan/7411
2014-01-03tests/Makefile: allow FILTER* to be called with lists of filter namesAnton Khirnov
2013-12-17fate: add utility function to test parser, demuxer, and decoderVittorio Giovara
2013-10-31FATE: Add HEVC testsGuillaume Martres
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-10-12FATE: add lavr mixing testsAnton Khirnov
2013-07-29fate: Add timefilter testDiego Biurrun
2013-07-27build: Only check FATE dependencies when running FATE testsDiego Biurrun
Only check dependencies if invoking the make targets 'check' or anything matching 'fate%' except 'fate-rsync'. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-05-28matroskaenc: support muxing WavPackAnton Khirnov
2013-05-28fate: Don't use files from SRC_PATH in the actual testsMartin Storsjö
If building out of tree, make sure the filter scripts are copied into the build tree before running tests. This makes sure that SRC_PATH doesn't need to exist on the remote system (or doesn't need to exist at the same path). Signed-off-by: Martin Storsjö <martin@martin.st>
2013-05-24Monkey's Audio old versions FATE testsKostya Shishkov
2013-05-04build: normalize coverage.infoReinhard Tartler
Without this, lcov sometimes misses to normalize paths that contain "/./". Also, ignore uninteresting hits in system headers.
2013-05-04build: tune down the output of lcov/gcovReinhard Tartler
In the default settings, both tools produce a lot of unhelpful noise.
2013-04-27fate: Invoke pixfmts lavfi tests through fate-run.shDiego Biurrun
2013-04-19fate: Rename video filters file and add separate video filters targetDiego Biurrun
2013-04-19fate: Split audio filters into their own separate fileDiego Biurrun
2013-04-19fate: Reuse VREF and AREF variables where appropriateDiego Biurrun
2013-04-05Integrate lcov/gcov into LibavReinhard Tartler
The gcov/lcov are a common toolchain for visualizing code coverage with the GNU/Toolchain. The documentation and implementation of this integration was heavily inspired from the blog entry by Mike Melanson: http://multimedia.cx/eggs/using-lcov-with-ffmpeg/
2013-03-29fate: add an option to generate the referencesLuca Barbato
Useful to add or update fate tests.
2012-11-28fate: Do not unconditionally run libavutil testsDiego Biurrun
Now that libavutil can be disabled, this should be conditional.
2012-10-23fate: check that dependencies actually existMans Rullgard
This causes make to exit with an error message if a nonexistent dependency is specified rather than silently dropping the test. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-23fate: fix ENCMUX macroMans Rullgard
This matches how it is actually being called. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-23fate: cosmetics: Group idct8x8 test together with all other libavcodec testsDiego Biurrun
2012-10-23fate: Declare avcodec/avformat deps in the respective Makefile snippetsDiego Biurrun
2012-10-20fate: Introduce ENCMUX macro for tests that require encoders and a muxerDiego Biurrun
2012-10-18fate: dependencies for demux testsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-18fate: add a dependency helper macroMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-18fate: list lavfi tests in a makefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-18fate: dependencies for seek testsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-18fate: handle lavf test dependencies entirely in makeMans Rullgard
This makes the lavf tests depend on all codecs and formats they use. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-18fate: add macros useful for conditionally enabling thingsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-09fate: Add tests of the ff_make_absolute_url functionMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-23FATE: add ALAC encoding testsJustin Ruggles
2012-07-27build: use COMPILE template for HOSTOBJSMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-22FATE: add a test for the asyncts audio filter.Anton Khirnov
2012-07-04lavfi: reclassify showfiltfmts as a TESTPROGMans Rullgard
This tool uses lavfi internal symbols not accessible in shared libraries. TESTPROGS are linked statically to allow them use of library internals not normally exported. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-04FATE: add a test for itunes cover art.Anton Khirnov
2012-07-04fate: add flac encode/decode tests with various optionsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-13build: Do not delete tests/vsynth2 directory, which is no longer created.Diego Biurrun
2012-06-07fate: avoid freopen(NULL) in videogen/rotozoomMans Rullgard
A number of systems do not implement freopen() with a NULL filename correctly. This changes these programs to output individual images if opening a named output argument as a file fails, in this case assuming it is a directory. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-29fate: convert codec-regression.sh to makefile rulesMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-29fate: allow tests to specify unit size for psnr comparisonMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-29fate: teach videogen/rotozoom to output a single raw video streamMans Rullgard
This makes videogen/rotozoom output a raw video stream on stdout if no output directory is specified. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-20fate: fix dependencies for non-SAMPLES avconv testsMans Rullgard
The encode/decode tests should all depend on avconv. Since avconv requires libavfilter, there is no need to enable those tests selectively. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-19fate: fix dependencies on SAMPLES being setMans Rullgard
This allows fate to run without errors with or without SAMPLES being set. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-09fate: improve dependenciesMans Rullgard
This makes only tests actually using avconv depend on it. The remaining tests already depend on what they need. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-09fate: fix dependencies for probe testsMans Rullgard
Only the probe tests should depend on avprobe and these should be enabled only if avprobe is configured. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-07fate: Add avprobe as a make dependencyAlex Converse