| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-02-05 | Missing dep.boost-exception-test | Carl Hetherington | |
| 2020-02-05 | Dep. | Carl Hetherington | |
| 2020-02-05 | Tweak stacktrace library name. | Carl Hetherington | |
| 2020-02-05 | Fix previous. | Carl Hetherington | |
| 2020-02-05 | Try to fix backtrace link on Windows. | Carl Hetherington | |
| 2020-02-05 | Missing lib in wscript. | Carl Hetherington | |
| 2020-02-04 | Add backtrace lib on Windows. | Carl Hetherington | |
| 2020-02-03 | Try to use backtrace. | Carl Hetherington | |
| 2020-02-03 | Another error. | Carl Hetherington | |
| 2020-02-03 | More DLLs. | Carl Hetherington | |
| 2020-02-03 | More DLL fixes. | Carl Hetherington | |
| 2020-02-03 | hogweed. | Carl Hetherington | |
| 2020-02-03 | More DLL names. | Carl Hetherington | |
| 2020-02-03 | libnettle library rename. | Carl Hetherington | |
| 2020-02-03 | libzip library rename. | Carl Hetherington | |
| 2020-02-03 | ssleay32.dll gone away? | Carl Hetherington | |
| 2020-02-03 | libeay32.dll gone away? | Carl Hetherington | |
| 2020-02-03 | Fix windows package script. | Carl Hetherington | |
| 2020-02-03 | Missing include. | Carl Hetherington | |
| 2020-02-03 | boost thread library name. | Carl Hetherington | |
| 2020-02-03 | Also build libsub with force-cpp11. | Carl Hetherington | |
| 2020-02-03 | Syntax. | Carl Hetherington | |
| 2020-02-03 | force-cpp11 for libdcp. | Carl Hetherington | |
| 2020-02-02 | boost exception test. | Carl Hetherington | |
| 2020-01-30 | Various thread cleanups. | Carl Hetherington | |
| 2020-01-30 | Use a non-pointer boost::thread and a std::atomic for the stop flag. | Carl Hetherington | |
| 2020-01-28 | Missing #include for previous. | 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-28 | Fix crash with sub-sample push parts in AudioMerger.v2.15.42 | Carl Hetherington | |
| Forward-ported from b86b15391074a68149f8c4a51958c7873d74def0 in master. | |||
| 2020-01-27 | Fix missing preferences icon on macOS. | Carl Hetherington | |
| 2020-01-25 | Warn if doing a gain calculation might cause clipping. | Carl Hetherington | |
| 2020-01-25 | Apply fader-based gain calculations to the current gain, not 0dB. | Carl Hetherington | |
| 2020-01-25 | Another thinko fix. | Carl Hetherington | |
| 2020-01-25 | Fix thinko two commits ago. | Carl Hetherington | |
| 2020-01-25 | Cache film length for Player::pass. | Carl Hetherington | |
| 2020-01-25 | Use memset for zeroing float buffers; it's faster, and I think | Carl Hetherington | |
| we get away with it on all the platforms we care about. | |||
| 2020-01-24 | Support binary STL subtitle files. | Carl Hetherington | |
| 2020-01-17 | Add patron. | Carl Hetherington | |
| 2020-01-16 | Make FileError say what path the problem was with. | Carl Hetherington | |
| 2020-01-14 | Add some PT-style names to the guesswork on which channel a particular sound ↵ | Carl Hetherington | |
| file belongs to. | |||
| 2020-01-14 | Stop invalid dates causing boost::posix_time to raise exceptions. | Carl Hetherington | |
| 2020-01-12 | swaroop variant build fix. | Carl Hetherington | |
| 2020-01-10 | Don't truncate active_video_frame_rate to an int otherwise setting fade on ↵v2.15.41 | Carl Hetherington | |
| non-integer-rate sources behaves oddly. | |||
| 2020-01-10 | Fix deadlock. | Carl Hetherington | |
| 2020-01-10 | Give DCPDecoder its own ::position which just returns its internal | Carl Hetherington | |
| _next time. This is important because Decoder::position does the wrong thing with DCPs in the following case. 1. DCPDecoder emits a subtitle event (start/stop) at time t. 2. There follows a long time T with no subtitle events. During this time the DCPDecoder's position is reported as t (since TextDecoder notes its position as the time of the last thing it emitted --- which is all it reasonably can do, I think). 3. During this T the DCPDecoder may be incorrectly pass()ed because its position is reported as earlier than it really is; this results in video/audio being emitted by the DCPDecoder but other contemporary sources may not be pass()ed. The upshot of this can be that no audio is emitted, as a contemporary audio source is not pass()ed and hence the merger is waiting for audio that will take a long time to come. When the butler is running this can result in audio underruns as the video buffers overflow with no sign of any audio. It is also simpler this way; DCPDecoder was already maintaining the required information. | |||
| 2020-01-09 | Update text panel 'why not' note when film's standard is changed. | Carl Hetherington | |
| Forward-ported from e8582393bd1367fff36bae8e053d799073d8b2ed in master. | |||
| 2020-01-09 | Make the 'why not' messages for VF a bit clearer. | Carl Hetherington | |
| Before it sounded like just because we couldn't refer to (e.g.) the audio we couldn't refer to any part of the DCP. | |||
| 2020-01-08 | Merge a set of changes which run the OpenGL video updates in a separatev2.15.40 | Carl Hetherington | |
| thread, hopefully making things more elegant and robust. | |||
| 2020-01-08 | First version of player stress-test management script. | Carl Hetherington | |
| 2020-01-08 | Some comments. | Carl Hetherington | |
