Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2012-06-18fate: vorbis: add 5.1 surround testMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-15fate: add snow hpel testsMans Rullgard
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
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-06-04movenc: Write chan atom for all audio tracks in mov mode movies.Alex Converse
2012-05-31fate: Fix fate-ac3-fixed-encode for pre-ssse3 x86 machinesMichael Niedermayer
The default mmxext and sse implementations of apply_window_int16 aren't bitexact. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-05-30fate: add missing $(TARGET_PATH) to ac3-fixed-encodeMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-30fate: fix md5sum replacement on some systemsMans Rullgard
On systems where the 'md5' command is used, there is a conflict with the md5() shell function in fate-run.sh. Using the 'command' keyword bypasses the shell function for correct behaviour. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-29avconv: merge configuration code for complex and simple filtersAnton Khirnov
Some tests change because -s now inserts the scaler to the end instead of beginning of the filtergraph.
2012-05-29fate: fix acodec/vsynth tests for make 3.81Mans Rullgard
GNU make 3.81 applies pattern rules in declaration order rather than by stem length as in 3.82. This moves the more generic patterns above the more specific ones such that they work with either make version. Some of the vsynth patterns are also simplified a little. 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-19lavf: change some (de)muxer names to lowercaseMans Rullgard
This is consistent with other format names. 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-19fate: remove unnecessary libavfilter dependencyMans Rullgard
avconv now requires libavfilter so this dependency is redundant. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-18avconv: replace -vsync cfr code with the fps filter.Anton Khirnov
Invented timestamps for the h264 tests return to something resembling sanity. In the idroq-video-encode test when converting 25 fps -> 30 fps the fifth frame gets duplicated instead of the sixth.
2012-05-18mov: enable parsing for VC-1.Anton Khirnov
This makes lavf discard broken timestamps for non-B frames in samples/isom/vc1-wmapro.ism.
2012-05-18fate: Set FUZZ factor of vorbis-13 test to 2.Diego Biurrun
This is necessary to account for different rounding done in the 3DNow! Assembly optimizations.
2012-05-18fate: Set FUZZ factor of (e)ac3-encode test to 3.Diego Biurrun
This is necessary to account for different rounding done in the 3DNow! Assembly optimizations.
2012-05-18fate: remove unused code from regressions-funcs.shMans Rullgard
The only uses of the do_avconv_nomd5() function were removed in 85cf49f. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-17pcmenc: set correct bitrate valueMans Rullgard
This fixes a bogus bitrate value in the header of WAV files with alaw/ulaw audio. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-16avprobe: don't print format entry name when only one was requestedAnton Khirnov
This is easier to parse with automated tools.
2012-05-16fate: Work around non-standard wc implementations at more placesMartin Storsjö
This applies the same fix as in ed7409fe9d for lavf-regressions.sh. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-05-16fate: work around non-standard wc implementationsMans Rullgard
On some systems, the wc command prints spaces before the first number causing mismatches with the test references. Using the output of wc as arguments to echo removes any extra whitespace. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-15fate: use standard diff optionsMans Rullgard
diff -w is not a standard option. This fixes the reference files to match what the tests actually output and switches to using the standard diff -b which is sufficient to handle different line ending styles. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-15fate: rename psx-str-v3-mdec to mdec-v3Mans Rullgard
This name better reflects that it is v3 of mdec that is tested. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-15fate: convert psx-str to a demuxer testMans Rullgard
While these codecs are covered elsewhere, the container is different from the other psx-str file. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-15fate: use diff -b in oneline comparisonMans Rullgard
This is simpler and should take care of any problems with mixed line ending styles. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-15fate: make smjpeg a demux testMans Rullgard
These codecs are covered elsewhere so make this a pure demux test. Also rename it accordingly. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-15fate: separate sierra-vmd audio and video testsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-15fate: separate smacker audio and video testsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14avconv: add support for audio filters.Anton Khirnov
The FATE changes are all off-by-one due to different rounding being used (lrintf vs av_rescale_q).
2012-05-14mtv: do not byteswap raw video in demuxerMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: westwood-aud: disable decodingMans Rullgard
The codec (adpcm-ima-ws) is tested elsewhere. Using framecrc output provides more information than a single md5 if something goes wrong. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: caf: disable decodingMans Rullgard
This is intended as a demuxer test and the file contains pcm_s16be audio which is tested elsewhere. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: film-cvid: drop pcm audio and rename testMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: d-cinema-demux: drop unnecessary flagsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: split off dpcm-interplay from interplay-mve testsMans Rullgard
These two files use the same audio codec so only one test for this is needed. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: rename funcom-iss to adpcm-ima-issMans Rullgard
This matches the name of the codec. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: rename cryo-apc to adpcm-ima-apcMans Rullgard
This matches the name of the tested codec. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: rename adpcm-psx-str-v3 to adpcm-xaMans Rullgard
This matches the name of the codec tested. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: split off adpcm-ms-mono test from dxa-feebleMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: split off adpcm-ima-ws test from vqa-ccMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: add adpcm-ima-smjpeg testMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: split off adpcm-ima-amv from amv testMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: separate bmv audio and video testsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: separate delphine-cin audio and video testsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-05-14fate: truemotion1: disable audioMans Rullgard
These tests include adpcm-ima-dk3 audio which is tested elsewhere. Signed-off-by: Mans Rullgard <mans@mansr.com>