| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-09-18 | Fix thinko in relative path change. | Carl Hetherington | |
| We have to canonicalise relative paths with respect to the film's directory on load, otherwise we try to use the relative path and it's interpreted against the current working directory. This unfortunately requires the film's directory to be piped into quite a lot of new places. | |||
| 2024-05-08 | Fix incorrect file adding during merge. | Carl Hetherington | |
| 2024-05-08 | Merge remote-tracking branch 'origin/main' into v2.17.x | Carl Hetherington | |
| 2024-05-08 | Work around deadlock when destroying J2KEncoder with a full writer queue ↵v2.16.83 | Carl Hetherington | |
| (#2784). This feels like a hack, but I can't think of a nicer way to do it. The interruption disable makes sense because when we destroy encoder threads during a DCP encode (because a remote server goes away, for example) we don't want any frames to be lost due to the encode thread being interrupted between taking the frame off the queue and sending it to the writer. When we're destroying the encoder we don't care about this, but I can't see how you'd differentiate. Maybe the encoder queue could have two lists: to-do and in-progress; the encoder thread atomically moves a frame from to-do to in-progress, but then how do you know when the in-progress ones are orphaned and need to be re-added to the main queue. You could make the writer return saying "no" if the queue is full (rather than blocking and waiting for the queue to empty) but that seems wasteful as then the frame would be re-encoded. | |||
| 2024-05-06 | Use sqlite for cinema and DKDM recipient lists. | Carl Hetherington | |
| 2024-04-21 | Rename j2k_bandwidth -> video_bit_rate. | Carl Hetherington | |
| 2024-03-11 | Use stored has_non_zero_entry_point() instead of parsing the DCP again (#2524). | Carl Hetherington | |
| 2024-02-22 | Merge tag 'v2.16.78' into v2.17.xv2.17.12 | Carl Hetherington | |
| 2024-02-21 | Fix failure to examine non-flat-ratio VFs (#2775). | Carl Hetherington | |
| 2024-02-19 | Merge tag 'v2.16.77' into v2.17.x | Carl Hetherington | |
| 2024-02-16 | Add Unzipper. | Carl Hetherington | |
| 2024-01-28 | Rearrange encoder threading. | Carl Hetherington | |
| Soon we'll add a new encoder type, and the existing structure was already creaking a bit at the seams while handling local and remote encodes. Here we split out an encoder thread and introduce the concept of a "sync" thread (which blocks while the encoding is happening). Later we'll have another type which submits the encode request to a GPU and receives the reply back later. | |||
| 2024-01-09 | Re-make video after YUV/RGB matrix is changed (#2714). | Carl Hetherington | |
| 2024-01-09 | Move ScopeGuard into libdcp. | Carl Hetherington | |
| 2023-10-16 | Remove unused code. | Carl Hetherington | |
| 2023-10-15 | Fix DCP content font ID allocation to cope with DCPs that have multiple fonts | Carl Hetherington | |
| with the same name in the same reel (#2600). Previously we had this id_for_font_in_reel() which would give an ID of N_font-ID. This means we got duplicate font IDs. Here we replace that method with FontAllocator, which gives an ID of N_font-ID for the first font and M_font-ID, where M is a number higher than the highest reel index. The idea is to support the required new IDs without breaking exisiting projects. There is some documentation of how it works in doc/design/fonts | |||
| 2023-08-29 | Restore burnt subtitle tests. | Carl Hetherington | |
| 2023-08-09 | Add some tests. | Carl Hetherington | |
| 2023-08-09 | Add a test. | Carl Hetherington | |
| 2023-06-30 | Don't write MainSoundConfiguration with 71 when we only have HI/VI (#2580). | Carl Hetherington | |
| 2023-05-28 | Bump libdcp for fix to crash with interop subtitles (#2536). | Carl Hetherington | |
| 2023-05-13 | Add dcpomatic2_map tool (#2445). | Carl Hetherington | |
| 2023-04-19 | In 1c73379ed8483dcf71c5ccfc459c2c22516a9aef I changed | Carl Hetherington | |
| FontConfig::_available_fonts to use the font ID as a key, but that's totally wrong because the same Font object with the same ID can have its font filename/data changed, and in that case we don't want to use the cached font. Here we use the actual TTF/OTF font data as the key. We could have just hashed the data (whether it comes from a disk file or is held in memory) but this is slower in the case where we have the filename, as then the file must be loaded from disk for each comparison. This fixes #2518. | |||
| 2023-03-29 | Write the correct MCA subdescriptors depending on active channels. | Carl Hetherington | |
| 2023-03-23 | Fix crashes when using templates in some cases (#2491). | Carl Hetherington | |
| If a template had content with N audio channels there would be various problems if content with <N channels was subsequently added. | |||
| 2023-03-03 | Add option to limit DCP output to the "Bv2.0 profile" (#2470).v2.16.45 | Carl Hetherington | |
| I'm far from convinced about the point/sense of all these "profiles" (rather than just implementing or at least tolerating the standard) but lots of people are having problems with "QC" processes failing their DCPs with complaints related to MCASubDescriptors. It seems to make sense to have an option to turn them off - at least for now, until either the "QC" situation settles down or any bugs in DCP-o-matic are found and fixed. | |||
| 2023-02-27 | Strip disallowed characters from subtitles before they get into the XML. | Carl Hetherington | |
| 2023-02-11 | Warn/error on making KDMs using recipient certs whose validity periods | Carl Hetherington | |
| lie outside those of the KDMs (#2423). | |||
| 2023-01-17 | Add some very basic tests of Collator. | Carl Hetherington | |
| 2022-11-21 | Fix subtitle vertical position (#2367). | Carl Hetherington | |
| Previously we would not account for the differences in what vertical position means between Interop and SMPTE. For interop, vertical position is the distance from the reference point to the text baseline, whereas for SMPTE it is the distance from the reference point to the top/middle/bottom of the subtitle (depending on the reference). This caused differences between the preview and the DCP for some cases (notably, using SRT/SSA and making Interop DCPs, or converting Interop DCP subs to SMPTE, or vice versa). | |||
| 2022-10-21 | Fix colour range property for subsampled sources (#2357). | Carl Hetherington | |
| 2022-08-29 | Fix and test release notes.v2.16.22 | Carl Hetherington | |
| 2022-07-11 | Fix font handling for DCP subtitles. | Carl Hetherington | |
| 2022-06-10 | Rename CheckContentChangeJob -> CheckContentJob. | Carl Hetherington | |
| 2022-06-07 | Fix incorrect extension on interop subtitle files (#2270). | Carl Hetherington | |
| 2022-05-05 | Add some tests for ScopedTemporary. | Carl Hetherington | |
| 2022-05-05 | Use dcp::File in DCP-o-matic (#2231). | Carl Hetherington | |
| 2022-05-02 | Extract and improve code to find missing files (#1940). | Carl Hetherington | |
| 2022-04-29 | Add guess_crop(). | Carl Hetherington | |
| 2022-04-29 | Add image_as_jpeg() | Carl Hetherington | |
| 2022-04-20 | Add ScopeGuard. | Carl Hetherington | |
| 2022-04-20 | Support DCP digest files (#2109). | Carl Hetherington | |
| 2022-04-04 | Add fade in/out option to the content audio tab (#1026). | Carl Hetherington | |
| 2022-02-25 | Add -x32/-x64 suffix to boost libraries when building for Windows. | Carl Hetherington | |
| 2022-01-11 | Fix crashes when using kdm_cli with a certificate instead of a cinema. | Carl Hetherington | |
| 2021-11-28 | Simplify and fix job scheduler, especially with respect to the priority system. | Carl Hetherington | |
| 2021-10-27 | Add a new test for subtitle timing when changing frame rate. | Carl Hetherington | |
| 2021-08-12 | Don't write empty <Text> nodes in subtitles/closed captions. | Carl Hetherington | |
| 2021-06-24 | Fix incorrect issuer/creator in CPL files. | Carl Hetherington | |
| 2021-06-03 | Ignore errors from avcodec_receive_frame when flushing video (#2035). | Carl Hetherington | |
| The test fails if we don't do this; it doesn't really seem 100% convincing but we are already doing this for audio. | |||
