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
2011-02-18ac3enc: fix bug in stereo rematrixing decision.Justin Ruggles
The rematrixing strategy reuse flags are not reset between frames, so they need to be initialized for all blocks, not just block 0. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 5b54d4b376fbd2c291b8a6dba7d425e28f654bcf)
2011-02-17ac3enc: change default floor code to 7.Justin Ruggles
This is to match the value in every (E-)AC-3 file from commercial sources. It has a negligible effect on audio quality. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 50d7140441b61809ad4ba4ea7b4ad8fe77bc6888)
2011-02-13Fix qtrle regression test, actually test qtrle.Baptiste Coudurier
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 646739a0a8368bd234ff077c093bbf01e9e7f44a)
2011-02-04ac3enc: Change EXP_DIFF_THRESHOLD to 500.Justin Ruggles
This patch changes the exponent difference threshold in the exponent strategy decision function of the AC-3 encoder. I tested lowering in increments of 100. From 1000 down to 500 generally increased in quality with each step, but 400 was generally much worse. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit c3beafa0f14fd81ab43083f61872cbd5426647cf)
2011-01-30Update mpegts test referenceMans Rullgard
The output was changed by a7827a17c6b3388322350456d445c94b3a82cd25. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 79dca23dc262742b312161a5dec707eb7b9c8d97)
2011-01-28mpegtsenc: set reserved bits to 1 in PCR fieldGeorgi Chorbadzhiyski
The reserved bits between PCR base and extension fields must be set to 1. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 535638b55f83ad47e4680883e87b97e69d0847e5)
2011-01-26fate: add h264 test for extreme cases in planar predictionMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit e63dd5fb04ab831ca8f17fa824cfd703e317c1a1)
2011-01-23fate: add lossless h264 testMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 76edf2c1377fdb35609f79a6702081de4d93e331)
2011-01-23fate: make lavfi tests output only md5Mans Rullgard
Instead of saving huge raw files, use the md5: output pseudo-protocol to calculate the checksum of the file directly. This is especially useful when testing on remote targets as it avoids transferring 3.6GB over the network. (cherry picked from commit f4b1e21a6304cda58ac36401d8f8dec7ff61d056)
2011-01-21Add regression test for stereo s16le in voc.Justin Ruggles
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit a4f5af13fb00d7f55946470bb0f52e1dbf5f3c6a)
2011-01-18fate: simplify vp8 rulesMans Rullgard
2011-01-18regtest: add openssl to md5 alternativesMans Rullgard
2011-01-18consolidate .gitignore patters into a single fileJanne Grunau
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-17convert svn:ignore properties to .gitignore filesJanne Grunau
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-15Update smc fate ref due to r26310Baptiste Coudurier
Originally committed as revision 26342 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09Add stereo rematrixing support to the AC-3 encoders.Justin Ruggles
This improves the audio quality significantly for stereo source with both the fixed-point and floating-point AC-3 encoders. Update acodec-ac3_fixed and seek-ac3_rm test references. Originally committed as revision 26271 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-05Add a FATE test for Playstation STR version 3Vitor Sessak
Originally committed as revision 26231 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-04Change the AC-3 encoder to use floating-point.Justin Ruggles
Fixed-point AC-3 encoder renamed to ac3_fixed. Regression test acodec-ac3 renamed to acodec-ac3_fixed. Regression test lavf-rm changed to use ac3_fixed encoder. Originally committed as revision 26209 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-02Remove the "-idct simple" command line option from the fate-psx-str test,Vitor Sessak
it should not be necessary anymore. Originally committed as revision 26198 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-29Change the default dB-per-bit code from 2 to 3.Justin Ruggles
This gives slightly better quality in PEAQ tests. Code 3 gives a dBpb value of 2816 = -132dB (128 psd units = -6dB), which corresponds to 22 bits. Since the exponents have an offset applied, the 16-bit source looks like 24-bit source to the bit allocation routine. So using dBpb code=3 is a closer match to the exponent range. Regression test refs updated for acodec-ac3, lavf-rm, and seek-ac3_rm. Originally committed as revision 26144 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-29Make fate vp8 test cover emu_edge casesLuca Barbato
Originally committed as revision 26134 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-29add SubRip decoderAurelien Jacobs
Originally committed as revision 26119 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-28Add copy filter, useful for testing the avfilter_draw_slice() copyStefano Sabatini
code. Originally committed as revision 26112 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-22Change FIX15() back to clipping to -32767..32767.Justin Ruggles
This avoids a 16-bit overflow in mdct512() due to a -32768 value in costab. References updated for acodec-ac3, lavf-rm, and seek-ac3_rm tests. Thanks to Måns Rullgård for finding the bug. Originally committed as revision 26071 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-21Increase STDDEV tolerance for the fate-amrwb-14k25 test so it pass inVitor Sessak
x86_64 boxes. Originally committed as revision 26064 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-21Add AMR-WB FATE testsVitor Sessak
Originally committed as revision 26063 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-19Discard partial packet of last frame for fate-wmv8-drm to avoid test failsReimar Döffinger
due to VC-1 decoder overreads resulting in different output. Originally committed as revision 26055 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-18Add test for ASF -cryptokey that tests only demuxing, but both audio and videoReimar Döffinger
to complement the existing video-only decode test. Originally committed as revision 26054 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-18Change ASF demuxer to return incomplete last packets.Reimar Döffinger
Whether the behaviour for streams using scrambling makes sense is unclear. Originally committed as revision 26053 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-14Update the test references for lavf-rm and seek-ac3_rm.Justin Ruggles
The references changed due to r25956. Originally committed as revision 26004 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-14Simplify fix15().Justin Ruggles
Turn it into 2 macros, and use av_clip_int16() and lrintf(). This matches the int16 to float sample conversion in audioconvert.c. The regression test output is different due to lrintf() rounding. Originally committed as revision 25956 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-07Add a FLAC parser.Michael Chinen
Seek test reference updated because FLAC seeking now works properly. Fixes roundup issue 1150. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25914 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-29Fix h264-conformance-frext-frext_mmco4_sony_b conformance test.Carl Eugen Hoyos
This includes a revert of r25840 Originally committed as revision 25842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-29Update fate h264 test due to r25824, this file has 2 frames delayBaptiste Coudurier
Originally committed as revision 25840 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-16Make DNxHD encoder produce files that are strictly VC-3 compatibleBaptiste Coudurier
Originally committed as revision 25756 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-14Add AMR-NB FATE testsVitor Sessak
Originally committed as revision 25750 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-14Add Musepack7 FATE testVitor Sessak
Originally committed as revision 25749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-12Remove now unused file (should have been part of commit r25735)Vitor Sessak
Originally committed as revision 25736 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-12Test 4XM decoding (and not only demuxing) in FATE testsVitor Sessak
Originally committed as revision 25735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-05Add test for cropping of interlaced H.264.Reimar Döffinger
Originally committed as revision 25677 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-03Update 24 bpp TM1 reference for decoder fixes.Reimar Döffinger
Originally committed as revision 25664 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-17Avoid negative SCR in mpeg ps muxer.Michael Niedermayer
Fixes a scr issue reported with dvdauthor ([FFmpeg-user] FFMPEG encoded MPEG-2 video causes error in DVDAuthor) Originally committed as revision 25512 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-10Update rv30 FATE reference after last commitAlexander Strange
The rm demuxer has timestamp bugs, so this test is sensitive to changes in timestamp correction. The previous commit did not make output any better or worse on this test, just different. See https://roundup.ffmpeg.org/issue2288 for details. Originally committed as revision 25432 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07Update gxf regression tests because of r25399Baptiste Coudurier
Originally committed as revision 25400 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07In gxf muxer, fix flt entry offset, patch by Reuben Martin, reuben dot m at ↵Reuben Martin
gmail dot com Originally committed as revision 25395 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-07Init SCR in mpeg muxer based on first DTS.Michael Niedermayer
This fixes issues if the first DTS is far away from 0. Originally committed as revision 25383 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-02Remove pointless -vn option, the file has no video stream.Reimar Döffinger
Originally committed as revision 25314 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-02Rename fate-gsm test to the more accurate fate-gsm-msReimar Döffinger
and add a test for regular GSM as fate-gsm. Fixes a 8kHz sample from issue 113. Originally committed as revision 25313 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-26Update rv20 seek test referenceMåns Rullgård
Originally committed as revision 25204 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-26Fix rv20 encoding so the binary decoder can decode it.Michael Niedermayer
Originally committed as revision 25203 to svn://svn.ffmpeg.org/ffmpeg/trunk