| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-07-05 | Add more logging and some missing prefs checkboxes for existing logging.v2.15.87 | Carl Hetherington | |
| 2020-06-19 | Make Atmos content work more like other content. Now its MXFsv2.15.82 | Carl Hetherington | |
| are re-written, meaning that they can be encrypted. This (along with the libdcp update) also fixes assorted Atmos bugs. | |||
| 2020-05-21 | Fix enabled/disable overlapping video/audio with DCP content (part of #1355) | Carl Hetherington | |
| 2020-05-20 | Add a bit more debug logging to the player. | Carl Hetherington | |
| 2020-05-17 | Fix empty (black) area calculations when video is set to not be used. | Carl Hetherington | |
| 2020-05-11 | Change video content scaling so that it either: | Carl Hetherington | |
| 1. scales the content up to fit the DCP container, preserving aspect ratio, or 2. stretches the content to a custom aspect ratio, or 3. scales the content to some custom size. | |||
| 2020-04-23 | Nicer fix for 86102d30bf0aad89115bbeb3d8aaa2a27a0aa432 | Carl Hetherington | |
| 2020-04-23 | Add accessor for _playlist. | Carl Hetherington | |
| 2020-04-23 | Fix complete failure of preview/playback introduced inv2.15.53 | Carl Hetherington | |
| 4219d4b76c5cd5690b1f4fa0c248d93ced26d05a. | |||
| 2020-04-15 | Fix length of player output so it can be either the film's length or ↵ | Carl Hetherington | |
| playlist's length, as appropriate. | |||
| 2020-04-14 | Fix Empty/Player behaviour when using a playlist that is not the same as the ↵ | Carl Hetherington | |
| Film's. Previously Empty would use the length of the film for its end point. Now it takes a Playlist (rather than a list of Pieces) and uses the length of that playlist for its end point. This fixes #1543, in which single-content audio analysis jobs would run for the whole length of the film, rather than the length of the content, producing strange graphs and incorrect progress reports. | |||
| 2020-04-14 | Ignore and report failures to decode frames during playback (#1593). | Carl Hetherington | |
| 2020-02-16 | Make a new AudioBuffers constructor and use it to avoid some use of the more ↵ | Carl Hetherington | |
| complicated copy_from. | |||
| 2020-02-06 | Fix crash with bitmapped subs that have zero width or height. | Carl Hetherington | |
| 2020-01-28 | Fix deadlock during content examination. | Carl Hetherington | |
| Before this fix, the following situation could happen in threads A and B: A: Some DONE signal happens; this triggers setup_pieces which takes a lock on the player mutex. B: FFmpegContent::examine takes a lock on the content mutex. B: FFmpegContent::examine adds a stream B: That causes STREAMS PENDING to be emitted. B: This tries to take a lock on the player mutex so it can update _suspended A: setup_pieces tries to access some content information, hence tries to take a lock on the content mutex. Now B is holding the CL and awaiting the PL and A is holding the PL and awaiting the CL. It feels like the root cause of this is that while setup_pieces is happening another change (which would itself cause setup_pieces) is announced, and this isn't dealt with properly. There are two steps here; _suspended is protected with an atomic rather than using _mutex, and also it can cope with being updated recursively. | |||
| 2020-01-25 | Cache film length for Player::pass. | Carl Hetherington | |
| 2020-01-07 | Extend the amount of allowed disagreement between the audio | Carl Hetherington | |
| coming from the content and the calculated periods of silence. It sees that there is some scope for disagreements here when trim start/end times are rounded to frame boundaries. Fixes #1708. | |||
| 2019-11-11 | Fix comment. | Carl Hetherington | |
| 2019-11-01 | Increase fudge factor at the boundary between audio signal and silence. | Carl Hetherington | |
| 2019-09-20 | Add a warning log when an assertion gets hit. | Carl Hetherington | |
| Forward-ported from 4141f01e25abd5050db09ff85da47ff059909669 in master. | |||
| 2019-09-09 | Stop crashing when running the hints check on films with silent/black gaps. | Carl Hetherington | |
| 2019-08-31 | Primitive subtitle export feature.v2.15.16 | Carl Hetherington | |
| 2019-08-30 | Make player more tolerant of some DCP errors. | Carl Hetherington | |
| 2019-07-31 | Avoid random black gaps between bits of content A and B whenv2.15.15 | Carl Hetherington | |
| content B has had its start trimmed. In this case when we seek inaccurately in A we previously also seeked inaccurately in B. This meant that at the transition the first frame we see of B may not be the first frame of B. After this we seek accurately in B so that we definitely get to the start of it. This is especially important if the start of B has been trimmed to within two keyframes so that an inaccurate seek is not sufficient. | |||
| 2019-07-25 | Optimise decoder_factory for DCPDecoder by offering the old decoder | Carl Hetherington | |
| (if available) to recover the list of reels from, rather than having to scan the filesystem again. | |||
| 2019-07-24 | Re-work idle handling from previous commit. | Carl Hetherington | |
| 2019-05-26 | Potential fix for #1568; we calculate the remaining DCPTime but | Carl Hetherington | |
| then convert it back to resampled content frames using the DCP rate rather than the resampled content rate, which seems wrong. If we want to go from metric time to frames we surely have to use the frame rate of the thing we are working with (not the frame rate which that thing will be played back at). | |||
| 2019-05-24 | Basic ability to set video range (JPEG/MPEG) at least for YUV content. May ↵ | Carl Hetherington | |
| not work for RGB. See #1509. | |||
| 2019-05-10 | Put Time types in dcpomatic namespace. | Carl Hetherington | |
| 2019-05-10 | libdcp API fixes. | Carl Hetherington | |
| 2019-04-17 | Fix errors when adding reels containing audio after referenced reels (#1528).v2.13.147 | Carl Hetherington | |
| 2019-03-23 | Another attempt to fix build.v2.13.135 | Carl Hetherington | |
| 2019-03-23 | Try to fix Windows build. | Carl Hetherington | |
| 2019-03-22 | Fix referencing of trimmed multi-reel DCPs (#1495). | Carl Hetherington | |
| 2019-03-13 | Only mark _suspended as false at the appropriate times; previouslyv2.13.130 | Carl Hetherington | |
| it was done too often, I think. | |||
| 2019-02-07 | Bodge at the interface between DCPTime and samples; fixes #1461. | Carl Hetherington | |
| 2019-01-10 | Only fill video gaps if they are at least half a frame in length. | Carl Hetherington | |
| Fixes lack of image (sometimes) when trimming drop-frame content. | |||
| 2019-01-10 | Fix a crash due the assertion in emit_audio failing when applying | Carl Hetherington | |
| trims which do not land precisely on a DCP audio sample boundary (at least, I think that's what triggers it). | |||
| 2018-12-22 | Fix assumption of 48kHz DCP audio in AudioRingBuffers consistency check (#1436). | Carl Hetherington | |
| 2018-11-21 | Tidy and fix logging. | Carl Hetherington | |
| 2018-11-21 | Add and use new FrameRateChange constructors. | Carl Hetherington | |
| 2018-11-21 | Put Film pointer into Decoder. | Carl Hetherington | |
| 2018-11-21 | Take Film pointer out of Content. | Carl Hetherington | |
| 2018-09-04 | Build Empty objects from the presence or absence of decoders in | Carl Hetherington | |
| Pieces, rather than the presence or absence of content. This seems better because of cases like encrypted DCPs without a a KDM: here we may have content but no decoder. | |||
| 2018-09-02 | Remove unnecessary subtitle scale (I think). | Carl Hetherington | |
| 2018-09-02 | Fix subtitle scaling when writing PNG subs. | Carl Hetherington | |
| 2018-08-29 | Missing handling of CHANGE_TYPE_CANCELLED causing another hang.v2.13.46 | Carl Hetherington | |
| 2018-08-29 | Basics of splitting CCAP streams into different assets. | Carl Hetherington | |
| 2018-08-23 | Remove TextType from various places as (I believe) it can be inferred from ↵ | Carl Hetherington | |
| the content. | |||
| 2018-08-22 | Fix hang due to incorrect signal ordering. | Carl Hetherington | |
