summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* Make seek regression tests fit after previous get_buffer change.Reimar Döffinger2009-10-021-24/+24
| | | | | | | The au and aiff demuxers would always return an empty packet before detecting EOF, this is now fixed with av_get_packet etc. returning EOF. Originally committed as revision 20136 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use floating point mathematics when encoding mpeg audio.Lasse Reinhold2009-09-302-8/+8
| | | | | | | | Fixes issue 975: high db peak levels when encoding mp2 Original patch by Lasse Reinhold, lassemikkelreinhold hotmail Originally committed as revision 20100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer -vcodec rawvideo over -vcodec huffyuv for lavfi regressionStefano Sabatini2009-09-291-1/+1
| | | | | | | tests, as the use of huffyuv may cause the auto-insertion of a scale filter, thus masking the mis-behavior of some filter. Originally committed as revision 20088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix md5 program invocation for BSD.Michael Kostylev2009-09-291-1/+1
| | | | | | patch by Michael Kostylev, michael.kostylev gmail com Originally committed as revision 20086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure that dv encoder initializes all encoded packet data.Reimar Döffinger2009-09-293-7/+7
| | | | | | | | The specification does not say which value to use for unused parts, so fill all unused bytes with 0xff, which is consistent with what DV usually uses for reserved or unused parts. Originally committed as revision 20084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated / stray code which slipped in with r20057.Stefano Sabatini2009-09-271-16/+0
| | | | Originally committed as revision 20060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of "function" "keywords" in lavfilter testing code, hopefully willReimar Döffinger2009-09-271-2/+2
| | | | | | make regressions tests runnable again with all shells. Originally committed as revision 20059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a lavfitest target for testing regressions in libavfilter.Stefano Sabatini2009-09-271-0/+38
| | | | | | | | 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
* regtest: do not write to /tmp/ffmpeg$$Måns Rullgård2009-09-211-13/+5
| | | | | | | | Nothing useful was ever written to this file. It did, however, often cause spurious failures when the file was left behind by another user on the system. Originally committed as revision 19938 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split dnxhd regression test so the parts can run in parallelMåns Rullgård2009-09-213-7/+11
| | | | Originally committed as revision 19936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use default sws_flags for dnxhd regression tests and also test the "-mbd rd"Reimar Döffinger2009-09-193-16/+27
| | | | | | variant of the encoder. Originally committed as revision 19923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update regression reference for DNxHD test updateReimar Döffinger2009-09-192-8/+16
| | | | Originally committed as revision 19922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change DNxHD regression tests to test both 720p and 1080i instead of just 1080iReimar Döffinger2009-09-191-1/+5
| | | | | | for better test coverage. Originally committed as revision 19921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change dnxhd regression tests for r19912 which fixed uninitialized data inReimar Döffinger2009-09-182-2/+2
| | | | | | encoded data. Originally committed as revision 19916 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update seek regression tests due to r19902Baptiste Coudurier2009-09-171-12/+12
| | | | Originally committed as revision 19904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update dnxhd rotozoom regression test values with more sane ones that matchReimar Döffinger2009-09-171-2/+2
| | | | | | the results of most FATE machines. Originally committed as revision 19903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix pes overhead computation, patch by Niobos, niobos at dest-unreach dot beNiobos2009-09-171-2/+2
| | | | Originally committed as revision 19902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update dnxhd regression test to match the majority of FATE machines (whichReimar Döffinger2009-09-171-2/+2
| | | | | | also have a much saner stddev). Originally committed as revision 19901 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add dnxhd test to regression tests.Reimar Döffinger2009-09-173-0/+13
| | | | Originally committed as revision 19895 to svn://svn.ffmpeg.org/ffmpeg/trunk
* disable new seeking code in mpeg-ts per #ifdef (use old read_seek by default)Ivan Schreter2009-09-061-26/+32
| | | | Originally committed as revision 19788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use generic multi-stream key frame finding routine to implement read_seek2 ↵Ivan Schreter2009-08-221-32/+26
| | | | | | | | and map read_seek to read_seek2. Originally committed as revision 19681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: correctly parse flags for simpleblock framesAurelien Jacobs2009-08-101-4/+4
| | | | Originally committed as revision 19621 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some hunks of unused and disabled code cruft.Diego Biurrun2009-08-071-5/+0
| | | | Originally committed as revision 19606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused global variable.Carl Eugen Hoyos2009-07-221-2/+0
| | | | Originally committed as revision 19483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calculate gradient from parameter instead of using a global variable.Carl Eugen Hoyos2009-07-221-2/+2
| | | | Originally committed as revision 19482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Due to a typo in videogen.c, the regression test videos were not asCarl Eugen Hoyos2009-07-214-491/+491
| | | | | | | | complex as originally planned. Typo fixed (the background moves less linear now) and regression test results updated. Originally committed as revision 19478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set index duration to 0 for cbr, specifying whole container coverageBaptiste Coudurier2009-07-041-1/+1
| | | | Originally committed as revision 19338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use ber4 length for descriptors preferred by specsBaptiste Coudurier2009-07-041-2/+2
| | | | Originally committed as revision 19337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write profile and level local tag in mpeg descriptorBaptiste Coudurier2009-07-041-2/+2
| | | | Originally committed as revision 19336 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update seek regression checksums due to:Michael Niedermayer2009-06-301-12/+12
| | | | | | | | r19300 Rewrite mp3 parser. New code is much simpler and does not drop stuff at random. Originally committed as revision 19306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly compute frame flags with closed gopBaptiste Coudurier2009-06-301-1/+1
| | | | Originally committed as revision 19304 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix yamaha adpcm stereo (issue 1117).Yoshihisa Uchida2009-06-202-6/+6
| | | | | | Patch by Yoshihisa Uchida, yoshihisa D uchida A gmail Originally committed as revision 19237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix onMetaData property count in flv files (issue 1206).Yoshihisa Uchida2009-06-202-2/+2
| | | | | | Patch by Yoshihisa Uchida, yoshihisa D uchida A gmail Originally committed as revision 19236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename tests/ffmpeg.regression.ref to tests/vsynth.regression.ref,Stefano Sabatini2009-06-181-0/+0
| | | | | | since that is the name of the corresponding test. Originally committed as revision 19220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regtest: print commands also for image format testsMåns Rullgård2009-06-141-0/+1
| | | | Originally committed as revision 19195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* demux whole PES packets from TSBaptiste Coudurier2009-05-271-22/+22
| | | | Originally committed as revision 18960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix off by one offset with fetch_timestamps, pts_parser_problem.mpg.Wolfram Gloger2009-05-271-4/+4
| | | | | | Patch by Wolfram Gloger, wmglo at dentm dot med dot uni-muenchen dot de. Originally committed as revision 18959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix regression tests, diff was due to a patch to mpeg-2 parser timestamp ↵Baptiste Coudurier2009-05-231-4/+4
| | | | | | | | fetching, pending, current ref is technically more correct though. Originally committed as revision 18912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix hdlr descr in mp4 which use c string, patch by Larbi Joubala, larbi dot ↵Larbi Joubala2009-05-232-2/+2
| | | | | | joubala at resonate-mp4 dot com Originally committed as revision 18911 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compute total bitrate more accurately, patch by corp186, chasedouglas at ↵corp1862009-05-232-28/+28
| | | | | | gmail dot com Originally committed as revision 18909 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pad last audio frame when encodingBaptiste Coudurier2009-05-234-111/+105
| | | | Originally committed as revision 18907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update regression tests for y4m after r18796David Conrad2009-05-112-3/+3
| | | | | | The default changed from 420mpeg2 to 420jpeg Originally committed as revision 18797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write a single pes for video frames, some proprietary player needs itBaptiste Coudurier2009-05-112-28/+28
| | | | Originally committed as revision 18792 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix total bitrate computation, based on patch by corp186, chasedouglas at ↵Baptiste Coudurier2009-05-102-27/+27
| | | | | | gmail dot com Originally committed as revision 18778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct x/ymin to avoid segfault due to out of picture reads.Michael Niedermayer2009-05-081-2/+2
| | | | Originally committed as revision 18771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix 6 channels raw pcm demuxing, raw pcm now demux a fixed number of samplesBaptiste Coudurier2009-04-124-71/+71
| | | | Originally committed as revision 18453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix comment: gcc 2.95.3 binaries decode ac3 fine if SSE is available andCarl Eugen Hoyos2009-04-101-1/+1
| | | | | | not disabled. Originally committed as revision 18424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure the last bits of huffyuv frames are zeroed.Michael Niedermayer2009-04-052-2/+2
| | | | | | Fixes issue946 Originally committed as revision 18334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename regression test result files from b-libav* to b-lavf* for consistency.Diego Biurrun2009-03-303-169/+169
| | | | | | | This requires updating the gxf regression checksum since the gxf muxer puts the filename in files it creates. Originally committed as revision 18253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix running regression tests on remote targetsMåns Rullgård2009-03-301-1/+1
| | | | Originally committed as revision 18251 to svn://svn.ffmpeg.org/ffmpeg/trunk