summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
21 hoursSupporters update.HEADv2.18.42mainCarl Hetherington
24 hoursFix sync when the audio stream takes a while to start up (#3144).Carl Hetherington
Previously we would sync audio and video before starting up the stream. Any time that the stream took to get going would then be an error in video/audio sync. This time is about 400ms with the Apple Studio Display (connected via Thunderbolt) and so there would be a very bad sync error there.
24 hoursKeep our own copy of the audio stream time.Carl Hetherington
Looking at the RtAudio code it is not safe to access this value from multiple threads, and RtAudio updates it from the audio callback thread.
24 hoursCompress an if.Carl Hetherington
24 hoursDelete some copy construction.Carl Hetherington
38 hoursFix failure to update CCAP when seeking to an empty place (#3163).Carl Hetherington
I don't know why the condition to clear the display included _tracks.empty() but it seems wrong.
38 hoursCompress an if.Carl Hetherington
5 daysMissing include.Carl Hetherington
5 daysFix build again.Carl Hetherington
7 daysOptimise fill_black() for AV_PIX_FMT_UYVY422.Carl Hetherington
7 daysAdd fill_memory().Carl Hetherington
7 daysWhite space: memory_util.{cc,h}Carl Hetherington
8 daysSupporters update.Carl Hetherington
8 daysCopy remembered assets when duplicating film (#3162).Carl Hetherington
8 daysUse some dcp::filesystem.Carl Hetherington
8 daysCleanup: use constant for "info".Carl Hetherington
8 daysWhite space: dcpomatic.cc.Carl Hetherington
8 daysUpdated zh_CN translation from 刘汉源.Carl Hetherington
8 daysFix failure to refer to CCAPs properly in VFs (#3161).Carl Hetherington
8 daysFix auto-mapping to put 7.1 surround channels in the right place.Carl Hetherington
Here we also use dcp::Channel to make things clearer.
14 daysSupporters update.v2.18.40Carl Hetherington
2026-05-10Fix build with nettle version 4 which just materialised in arch.Carl Hetherington
2026-05-10White space: digester.{cc,h}Carl Hetherington
2026-05-10Supporters update.Carl Hetherington
2026-05-10Add an assertion.Carl Hetherington
2026-05-10Add some missing initialisation of std::atomic.Carl Hetherington
Contrary to cppreference.com in C++11 this is still necessary. It was causing an intermittent test failure on macOS when Player::_video_container_size was not initialized so sometimes _black_image would not be created.
2026-05-09Updated ja_JP translation from 林雅成.Carl Hetherington
2026-05-09Fix asan errors (and possibly crashes) on macOS.Carl Hetherington
2026-05-09Tweak DCP video panel layout, especially for macOS.Carl Hetherington
On Tahoe the 2K/4K dropdown was always ellipsized.
2026-05-07Protect _dcp_decode_reduction with the mutex rather than a std::atomic.Carl Hetherington
Things in boost/std::atomic must be trivially copiable.
2026-05-07Use std::atomic rather than boost::atomic.Carl Hetherington
It's in C++11.
2026-04-26Add --trusted-device-chain option to KDM CLI.Carl Hetherington
2026-04-26Warn if you specify trusted devices with a formulation that won't use them.Carl Hetherington
2026-04-24Supporters update.Carl Hetherington
2026-04-23Fix 32-bit Windows build.v2.18.39Carl Hetherington
2026-04-23Supporters update.Carl Hetherington
2026-04-23Fix reading of RGB0 images.Carl Hetherington
We would allocate 3 bytes per pixel instead of 4. I couldn't see a way to get FFmpeg to tell us about this (unless we used FFmpeg's stride somehow maybe?)
2026-04-23Fix late subtitles when they are muxed late with respect to the video.Carl Hetherington
In one example we have the sequence video 3088,377 sub 3087,334 sub 3088,710 video 3088,419 so the 3087,334 sub is very late. Here we insert a queue to bring subtitle packets a little forward for processing. There is already a similar thing in the player (_delay) but adding a longer delay there seems wasteful because a) the video is by that point already decompressed and b) this problem only applies to FFmpeg-decoded files (and then, I think only if we are previewing or burning in subtitles).
2026-04-23Fix doxygen comment.Carl Hetherington
2026-04-22Tweak to fr_FR translation from Théo Lalanne.Carl Hetherington
2026-04-22Updated fr_FR translation from Théo Lalanne.Carl Hetherington
2026-04-21Fix bug causing mangled audio analyses in some cases (#3155).Carl Hetherington
The duplicate ID detection was broken due to using the video stream index rather than its ID for checks.
2026-04-21Compress an if.Carl Hetherington
2026-04-21Updated nl_NL translation from Rob van Nieuwkerk.Carl Hetherington
2026-04-21White space: ffmpeg_decoder.{cc,h}Carl Hetherington
2026-04-21pot/merge.Carl Hetherington
2026-04-21Fix verification message.Carl Hetherington
2026-04-20pot/merge.Carl Hetherington
2026-04-19Give some idea of how much XML/MXF files are too big when hinting.Carl Hetherington
2026-04-16Add --fill-crop to create CLI (#3008).Carl Hetherington
This can be used to extract images from letterboxed/pillarboxed frames.