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
path: root/tests
AgeCommit message (Collapse)Author
2010-03-09mpegts vbr muxing, activated when muxing rate is not supplied by theBaptiste Coudurier
user. Originally committed as revision 22352 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Start continuity counter at 0 for pmt as wellBaptiste Coudurier
Originally committed as revision 22350 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Start continuity counter at 0 for streamsBaptiste Coudurier
Originally committed as revision 22344 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-0810l typo, fix ts total bit rate computationBaptiste Coudurier
Originally committed as revision 22343 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08Make ffserver regression test run (still fails)Måns Rullgård
Originally committed as revision 22305 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-08regtest: move md5sum wrappers into separate fileMåns Rullgård
ffserver-regression.sh doesn't need anything else from regression-funcs.sh, and sourcing the entire file there breaks things. Originally committed as revision 22304 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07regtest: run seektest on image sequencesMåns Rullgård
Seeking on image sequences doesn't actually work, so this test isn't very useful until that capability is added. Originally committed as revision 22286 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07regtest: run seektest on lavftest output filesMåns Rullgård
Somehow this got lost in the recent overhaul. Originally committed as revision 22283 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07regtest: place image sequence outputs in separate directoriesMåns Rullgård
Originally committed as revision 22282 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04Simplify starting and ending clustersDavid Conrad
Originally committed as revision 22199 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-03Make seektest messages similar to other testsMåns Rullgård
Originally committed as revision 22159 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-03Place regtest-pixfmt output files in separate dirMåns Rullgård
This test generates many output files, and keeping them separate is convenient. Originally committed as revision 22157 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-03-03Place regression test output files in subdirs per familyMåns Rullgård
Originally committed as revision 22155 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-02Revert "Remove the self reference in the seektest that prevented it from"Måns Rullgård
This reverts r22151. It prevents the seektest from running at all and is thus of no use whatsoever. Originally committed as revision 22152 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-02Remove the self reference in the seektest that prevented it fromMichael Niedermayer
testing new formats since 2 years namely r11831. This likely will uncover bugs that gone unnoticed in the last 2 years due to lack of testing. Originally committed as revision 22151 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-02Make sure we dont double test files and sort the list.Michael Niedermayer
Originally committed as revision 22150 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-02Codec copy test.Michael Niedermayer
Originally committed as revision 22148 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-28Free packets read in seek_test.Reimar Döffinger
Originally committed as revision 22110 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-28Fix some memory leaks in seek_test test program:Reimar Döffinger
- do not allocate context twice - close the input file before exiting Originally committed as revision 22108 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-24Correctly increment continuity_counter in PCR packets.Yann Coupin
Patch by Yann Coupin, yann.coupin+ffmpeg gmail Originally committed as revision 22020 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-18Use stripped executable in regression testsMåns Rullgård
Originally committed as revision 21870 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-03Correct opts calulation in ffmpeg.c.Michael Niedermayer
This correct the stop point for demuxing with -vcodec copy and -t as well as packet interleaving. (we already diddrop packets but kept demuxing them for too long due to opts being wrong) the change to ffm is due to 2 packets with timestamp 0 being stored in different order. Originally committed as revision 21626 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-02Set AVPacket.pos in MPEG-PS demuxer.Michael Niedermayer
Originally committed as revision 21604 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-02Check pkt.pts against the recording time.Michael Niedermayer
This fixes at least ogg encoding with -t where the file was slightly too long. Originally committed as revision 21598 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-22Update regression tests after r21372David Conrad
Originally committed as revision 21374 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-16regtest: suppress console output from testsMåns Rullgård
This disables all console output from the *-regression.sh scripts by default. If the V environment variable is set to 1, ffmpeg commands are printed before being run. If V is greater than 1, ffmpeg output goes to the console, otherwise stderr is redirected to a file. Originally committed as revision 21253 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-14Do not split audio frames accross pes packets.Baptiste Coudurier
This was not supported by some equipment and cisco analyzer. Originally committed as revision 21203 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-13Insert null packets to keep pcr values correct, patch by Mike Scheutzow,Mike Scheutzow
scheutzow at alcatel-lucent dot com and Niobos, niobos at dest-unreach dot be. Originally committed as revision 21199 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-0210l, my last commit (r21001) broke regression tests.Vitor Sessak
FATE tests might need updating too. Originally committed as revision 21002 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-26Use common regression test functions in ffserver regression test script.Diego Biurrun
This makes the ffserver regression test more portable. Originally committed as revision 20925 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-26Replace ` ` syntax by $( ) in regression test shell scripts.Diego Biurrun
The latter syntax variant is more readable and easier to nest. Originally committed as revision 20924 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-18It appears that waveformatextensible is mandatory for more cases thanMichael Niedermayer
just channels>2. The 16bit case is from MSDN, the 48khz is from less a reliable www page (sorry i cant find the URL anymore). Originally committed as revision 20892 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-16Update ffm reference checksums as a result of r20869.Jai Menon
Originally committed as revision 20882 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-12-12Reduce the number of encoded frames for the dnxhd tests to 5.Stefano Sabatini
Significantly reduce codectest execution time. Originally committed as revision 20804 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-07Update seek.regression.ref. This is due to r20758.Jai Menon
Originally committed as revision 20759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-01update seek regression ref due to r20674, packet size changedBaptiste Coudurier
Originally committed as revision 20688 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-26Update libavformat regression reference checksum for ffm. This change isJai Menon
due to r20601. Originally committed as revision 20621 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-24update seek regression ref due to r20579, mp3 timestamps are adjustedBaptiste Coudurier
Originally committed as revision 20597 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-10fix a rounding error in the PSNR calculation and update the many regressionJustin Ruggles
test references that this change affects. Originally committed as revision 20492 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-24Fix codectestMåns Rullgård
Originally committed as revision 20360 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-24Split codec-regression.sh, put all the code which can be shared byStefano Sabatini
other regression test scripts in the regression-funcs.sh file. Originally committed as revision 20359 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-23Build extradata in adpcm_ms encoder.Daniel Verkamp
This fixes issue #1244. Originally committed as revision 20349 to svn://svn.ffmpeg.org/ffmpeg/trunk