| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-02-23 | Fix assertion failure in AudioBuffers::copy_from() (#1909)win-splash | 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-21 | Verify a whole bunch of DCPs made by unit tests. | Carl Hetherington | |
| 2021-02-16 | Avoid using unzip.exe for Windows tests, as it crashes quite a lot for some ↵ | Carl Hetherington | |
| reason. | |||
| 2021-02-15 | Test reference tweaks. | Carl Hetherington | |
| 2021-02-15 | Basic handling of overlapping video (#1848). | Carl Hetherington | |
| 2021-02-14 | Fix incorrect coalesce() output when one input range is wholly | Carl Hetherington | |
| covered by another. | |||
| 2021-02-07 | More libdcp include fixes. | Carl Hetherington | |
| 2021-02-04 | Fix test for better diacriticals handling. | Carl Hetherington | |
| 2021-02-03 | Use 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-02 | Reduce the disk space needed when running tests.v2.15.124 | Carl Hetherington | |
| 2021-02-01 | c++11-ification. | Carl Hetherington | |
| 2021-02-01 | Remove some debugging code from tests. | Carl Hetherington | |
| 2021-02-01 | Use 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-01 | C++11-ification. | Carl Hetherington | |
| 2021-02-01 | Add noise to very small J2K frames (#1902). | Carl Hetherington | |
| 2021-01-31 | More enum class additions. | Carl Hetherington | |
| 2021-01-30 | Rename debug type THREED to THREED_D. | Carl Hetherington | |
| 2021-01-27 | Use enum class for VideoRange. | Carl Hetherington | |
| 2021-01-26 | Fix label alignment. | Carl Hetherington | |
| 2021-01-22 | c++11 tidying. | Carl Hetherington | |
| 2021-01-22 | Test fixes. | Carl Hetherington | |
| 2021-01-22 | Check FFOC correctly. | Carl Hetherington | |
| 2021-01-22 | C++ tidying. | Carl Hetherington | |
| 2021-01-22 | Test updates for libdcp fix to the duration of Marker assets. | Carl Hetherington | |
| 2021-01-22 | c++11 tidying. | Carl Hetherington | |
| 2021-01-21 | Adapt for libdcp use of enum class. | Carl Hetherington | |
| 2021-01-20 | Bump libdcp for better verification, and make API adjustments. | Carl Hetherington | |
| 2021-01-08 | New libcxml API. | Carl Hetherington | |
| 2021-01-07 | BOOST_FOREACH. | Carl Hetherington | |
| 2021-01-07 | std::shared_ptr | Carl Hetherington | |
| 2020-12-22 | Pass 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-11 | Fix lots of macOS warnings by using a different boost/bind include. | Carl Hetherington | |
| 2020-12-10 | Fix macOS build. | Carl Hetherington | |
| 2020-12-08 | In a DCP with any subs/ccaps, make sure every reel has them (#1340). | Carl Hetherington | |
| 2020-12-08 | Fix test build on macOS. | Carl Hetherington | |
| 2020-12-08 | Write 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-06 | Remove a pointless parameter that the callee can calculate. | Carl Hetherington | |
| 2020-12-06 | Add some hints for violations of SMPTE Bv2.1 with subtitles and closed | Carl Hetherington | |
| captions. | |||
| 2020-12-03 | Add basic unit test for the disk writer code. | Carl Hetherington | |
| 2020-12-03 | Enable TYPE_DISK logging by default. | Carl Hetherington | |
| 2020-12-03 | Obey 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. | |||
| 2020-12-01 | Give Butler a weak_ptr<Film> | Carl Hetherington | |
| 2020-11-30 | Fix test build. | Carl Hetherington | |
| 2020-11-29 | Move some test references into test-private. | Carl Hetherington | |
| 2020-11-28 | Fix over-read behaviour of FileGroup to be the same on all platforms. | Carl Hetherington | |
| Instead of relying on the operating system's behaviour when seeking off the end of a file, keep our own _position. This normalises the behaviour between POSIX and Windows. | |||
| 2020-11-26 | More macOS build fixes. | Carl Hetherington | |
| 2020-11-26 | macOS build fix. | Carl Hetherington | |
| 2020-11-26 | Calculate hashes for any referenced assets that do not already have one. | Carl Hetherington | |
| This is necessary so that we always include <Hash> in CPLs even when referencing DCPs that do not have it. | |||
| 2020-11-25 | Fix corrupted image when over-cropping black filler frames. | Carl Hetherington | |
| FFmpegDecoder can emit small black frames (128x128 pixels) when it wants to fill in a gap. Image::crop_scale_window would do the wrong thing if we then applied a crop of greater than 128 in either direction; though cropped_size is correctly clamped, the crop value itself was not and is used to calculate the input data pointers. This would result in random frames, usually at the end of DCPs, often made up of blurry colour washes. | |||
| 2020-11-24 | Fix the behaviour of FileGroup when seeking too far. | Carl Hetherington | |
| Previously, if you did a seek off the end of the file group, the seek would return an error. This is not what fseek() does; it returns no error, and preserves the file pointer (returned by ftell()) as if the seek had been successful. fread()s after a too-far seek return no data, of course. Parsing some files (the example used to find the bug was a H264 MP4) involves a seek which is to the byte after the end of the mp4 file. If this fails the whole header parsing fails and DCP-o-matic refuses to use the file. | |||
