summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2021-02-28Try again to fix windows tests.Carl Hetherington
2021-02-27Try to fix text-file-checking test on Windows.Carl Hetherington
2021-02-26Test fixes.Carl Hetherington
2021-02-26Try to make tests more robust by specifying signer/decryption chains.Carl Hetherington
2021-02-26More verification of DCPs during tests.Carl Hetherington
2021-02-24Fix tests being broken by new config test.v2.15.132Carl Hetherington
2021-02-24Fix config test file in test/data.Carl Hetherington
2021-02-24Fix config.xml corruption when it contains multi-byte UTF8 characters.Carl Hetherington
2021-02-23Fix missing test exception.Carl Hetherington
2021-02-23Fix assertion failure in AudioBuffers::copy_from() (#1909)Carl Hetherington
A number of frames N was being split up into two parts which together were bigger than N, meaning a copy of one of the parts failed.
2021-02-23Verify a whole bunch of DCPs made by unit tests.Carl Hetherington
2021-02-16Avoid using unzip.exe for Windows tests, as it crashes quite a lot for some ↵Carl Hetherington
reason.
2021-02-15Test reference tweaks.Carl Hetherington
2021-02-15Basic handling of overlapping video (#1848).Carl Hetherington
2021-02-14Fix incorrect coalesce() output when one input range is whollyCarl Hetherington
covered by another.
2021-02-07More libdcp include fixes.Carl Hetherington
2021-02-04Fix test for better diacriticals handling.Carl Hetherington
2021-02-03Use icu to remove diacritics from strings.Carl Hetherington
This replaces some ad-hoc code and extends it to work with more characters (#1904).
2021-02-02Reduce the disk space needed when running tests.v2.15.124Carl Hetherington
2021-02-01c++11-ification.Carl Hetherington
2021-02-01Remove some debugging code from tests.Carl Hetherington
2021-02-01Use a predictable RNG when adding noise to low-bitrate images.Carl Hetherington
The recovery code assumes that encoding a given frame from the same data will always give the same output; it always encodes frame 0 again to set things up properly and if that frame is a different size to the previous run everything breaks.
2021-02-01C++11-ification.Carl Hetherington
2021-02-01Add noise to very small J2K frames (#1902).Carl Hetherington
2021-01-31More enum class additions.Carl Hetherington
2021-01-30Rename debug type THREED to THREED_D.Carl Hetherington
2021-01-27Use enum class for VideoRange.Carl Hetherington
2021-01-26Fix label alignment.Carl Hetherington
2021-01-22c++11 tidying.Carl Hetherington
2021-01-22Test fixes.Carl Hetherington
2021-01-22Check FFOC correctly.Carl Hetherington
2021-01-22C++ tidying.Carl Hetherington
2021-01-22Test updates for libdcp fix to the duration of Marker assets.Carl Hetherington
2021-01-22c++11 tidying.Carl Hetherington
2021-01-21Adapt for libdcp use of enum class.Carl Hetherington
2021-01-20Bump libdcp for better verification, and make API adjustments.Carl Hetherington
2021-01-08New libcxml API.Carl Hetherington
2021-01-07BOOST_FOREACH.Carl Hetherington
2021-01-07std::shared_ptrCarl Hetherington
2020-12-22Pass fonts from content around as FontData.Carl Hetherington
i.e. as a block of memory rather than a file. Also, get the fonts from the decoder rather than the content. Together, these changes allow us to use fonts from SMPTE DCPs added as content. Before, fonts would be messed up in those cases (#1885).
2020-12-11Fix lots of macOS warnings by using a different boost/bind include.Carl Hetherington
2020-12-10Fix macOS build.Carl Hetherington
2020-12-08In a DCP with any subs/ccaps, make sure every reel has them (#1340).Carl Hetherington
2020-12-08Fix test build on macOS.Carl Hetherington
2020-12-08Write subtitles and closed captions to a test DCP in the hints thread,Carl Hetherington
then check the result for Bv2.1 violations (part of #1800).
2020-12-06Remove a pointless parameter that the callee can calculate.Carl Hetherington
2020-12-06Add some hints for violations of SMPTE Bv2.1 with subtitles and closedCarl Hetherington
captions.
2020-12-03Add basic unit test for the disk writer code.Carl Hetherington
2020-12-03Enable TYPE_DISK logging by default.Carl Hetherington
2020-12-03Obey audio timestamps if they don't deviate by more than some threshold.Carl Hetherington
Previously we would ignore audio timestamps because they are not contiguous in a sample-accurate way. However with bugs like #1833 we do need to obey large discontinuities in audio timestamps, otherwise we get large sync errors. Here we change timestamp handling to ignore small discontinuities in timestamps but not larger ones.