summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAge
* fate-lavfi: replace sed/grep/cut combos with awkMans Rullgard2012-10-23
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: check that dependencies actually existMans Rullgard2012-10-23
| | | | | | | 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>
* fate: fix ENCMUX macroMans Rullgard2012-10-23
| | | | | | This matches how it is actually being called. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: Add dependencies for audio testsDiego Biurrun2012-10-23
|
* fate: cosmetics: Group idct8x8 test together with all other libavcodec testsDiego Biurrun2012-10-23
|
* fate: More fine-grained dependencies for libavcodec test programsDiego Biurrun2012-10-23
|
* fate: Declare avcodec/avformat deps in the respective Makefile snippetsDiego Biurrun2012-10-23
|
* fate: Add dependencies for WMA and WavPack testsDiego Biurrun2012-10-23
|
* fate: adpcm: cosmetics: Sort test entriesDiego Biurrun2012-10-20
| | | | This also places tests of related formats together.
* fate: adpcm: Add dependenciesDiego Biurrun2012-10-20
|
* fate: Introduce ENCMUX macro for tests that require encoders and a muxerDiego Biurrun2012-10-20
|
* fate-vc1: add dependenciesMans Rullgard2012-10-20
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: Add proper dependencies for the tests in video.makMartin Storsjö2012-10-19
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* fate: Add proper dependencies in qt.makMartin Storsjö2012-10-19
| | | | | | The output of make fate-list is identical to before. Signed-off-by: Martin Storsjö <martin@martin.st>
* fate: Add proper dependencies in lossless-video.makMartin Storsjö2012-10-19
| | | | | | The output of make fate-list is identical to before. Signed-off-by: Martin Storsjö <martin@martin.st>
* fate: dependencies for screen codec testsDiego Biurrun2012-10-18
|
* fate: add dependencies for misc microsoft codecsMans Rullgard2012-10-18
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate-twinvq: add dependenciesMans Rullgard2012-10-18
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate-mpc: add dependenciesMans Rullgard2012-10-18
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate-indeo: add dependenciesMans Rullgard2012-10-18
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate-als: add dependenciesMans Rullgard2012-10-18
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: dependencies for demux testsMans Rullgard2012-10-18
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: add a dependency helper macroMans Rullgard2012-10-18
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: list lavfi tests in a makefileMans Rullgard2012-10-17
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: dependencies for seek testsMans Rullgard2012-10-17
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: handle lavf test dependencies entirely in makeMans Rullgard2012-10-17
| | | | | | This makes the lavf tests depend on all codecs and formats they use. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: dependencies for acodec testsMans Rullgard2012-10-17
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: dependencies for vsynth testsMans Rullgard2012-10-17
| | | | | | | This makes the vsynth tests run only if the required codecs and formats are enabled. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: add macros useful for conditionally enabling thingsMans Rullgard2012-10-17
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* riff: do not write empty INFO tagsVictor Vasiliev2012-10-16
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* fate: Add rangecoder testDiego Biurrun2012-10-16
|
* nut: export codec_tag provided by rawvideoLuca Barbato2012-10-16
| | | | | | Raw audio does not provide valid audio tags while rawvideo does. The fate refs have to be updated because it undoes the previous tag change.
* tiny_psnr: fix range calculation for sample size of 32 bitsMans Rullgard2012-10-15
| | | | | | | | | For a sample size of 32 bits, the shift would overflow producing undefined results. Incidentally, in the only test currently using 32-bit samples, the output matches the reference exactly on most systems meaning the bad 'max' value is never used. Signed-off-by: Mans Rullgard <mans@mansr.com>
* tiny_psnr: check for specified sample size less than 1Mans Rullgard2012-10-15
| | | | | | | A zero or negative sample size is impossible and should be reported as an error. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: improve md5sum utility selectionMans Rullgard2012-10-15
| | | | | | | The 'md5sum' command is used with the -b flag so the presence test must also use this flag. Signed-off-by: Mans Rullgard <mans@mansr.com>
* nut: prioritize native tagsLuca Barbato2012-10-13
| | | | | Use native tags instead of avi ones, simplifies a lot raw video codecs handling.
* fate: add avstring testDiego Biurrun2012-10-12
|
* avutil: add yuva422p and yuva444p formatsLuca Barbato2012-10-12
|
* fate: add h263 obmc vsynth testsJanne Grunau2012-10-10
|
* parseutils-test: do not print numerical error codesMans Rullgard2012-10-10
| | | | | | | The error codes differ between systems so printing the value makes the fate test fail on some systems. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: Refactor setting of environment variables for groups of testsDiego Biurrun2012-10-10
|
* fate: Add tests of the ff_make_absolute_url functionMartin Storsjö2012-10-09
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* ffm: do not write or read the audio sample formatJustin Ruggles2012-10-06
|
* fate: Add parseutils testDiego Biurrun2012-10-06
|
* lavf: flush the output AVIOContext in av_write_trailer().Anton Khirnov2012-09-15
| | | | | | | This is consistent with stdio and is what we want to do in all cases. Fixes a bug in the voc muxer which didn't flush in write_trailer() previously. This is the cause of the change in the test results.
* fate: ac3: add 4.0 and downmix testsMans Rullgard2012-09-14
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: mp3: drop redundant CMP settingMans Rullgard2012-09-10
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: Drop redundant setting of FUZZ to 1Diego Biurrun2012-09-07
|
* fate: Allow setting the ld parameter from the config fileMartin Storsjö2012-09-06
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* adpcmenc: Calculate the IMA_QT predictor without overflowMichael Niedermayer2012-09-04
| | | | | | | | | | | | | | Previously, the value given to put_bits was 10 bits long for positive predictors, even though 9 bits were to be written. The extra bit could in some cases overwrite existing bits in the bitstream writer cache. This fixes a failed assert in put_bits.h, when running a version built with -DDEBUG. The fate test result gets slightly improved, thanks to getting rid of the overwritten bits in the bitstream writer cache. Signed-off-by: Martin Storsjö <martin@martin.st>