summaryrefslogtreecommitdiff
path: root/src/lib
AgeCommit message (Collapse)Author
2025-12-01Add sentry crash reporting on Windows.sentryCarl Hetherington
2025-11-27Log the thread that was used in the encoder (on Linux).Carl Hetherington
2025-11-27Fix overly-long thread name, and give it a number.Carl Hetherington
2025-11-27Cleanup: replace stdio with fmt library.Carl Hetherington
2025-11-27White space: encoded_log_entry.{cc,h}Carl Hetherington
2025-11-23Fix uninitialised variable.Carl Hetherington
2025-11-20Use relative_path().Carl Hetherington
Paths that cannot be made relative (e.g. X:\foo relative to C:\bar) are returned as empty by boost, and to be honest it's hard to think of a worse way to solve that particular problem.
2025-11-20Add and test relative_path() method.Carl Hetherington
2025-11-15Updated nl_NL translation from Rob van Nieuwkerk.Carl Hetherington
2025-11-14Cleanup: compress a couple of ifs.Carl Hetherington
2025-11-12Updated nl_NL translation from Rob van Nieuwkerk.Carl Hetherington
2025-11-09pot/merge.Carl Hetherington
2025-11-09Re-examine files created before we stopped auto-generating stream IDs.Carl Hetherington
2025-11-09Add remove_stream_ids().Carl Hetherington
2025-11-09White space: ffmpeg_content.{cc,h}Carl Hetherington
2025-11-09Preserve CPL/PKL filenames in the editor (#3109).Carl Hetherington
2025-11-07Use AV_CODEC_FLAG_BITEXACT when encoding audio.Carl Hetherington
Otherwise, for example, aacenc.c in ffmpeg calls put_bitstream_info() every so often. This writes the avcodec version string into the packet, so that when that string becomes longer there are fewer bits available for encoding the audio, slightly changing the rate calculations.
2025-11-05Add hint about partially-encrypted projects.Carl Hetherington
2025-11-05Allow specification of which parts of the DCP to encrypt (#3099).Carl Hetherington
2025-11-04Fix failure to play any audio when one stream isn't producing anything (#3108)Carl Hetherington
Without this we consider a never-pushed stream active, but with position 0, so we think we never have any audio ready.
2025-11-03Missing check for duplicate IDs.Carl Hetherington
Without this call we don't spot duplicates that are found in the initial scan.
2025-10-30Move JSONServer State to avoid ODR violation.v2.18.29Carl Hetherington
2025-10-29Don't report channels as mapped when they are not included in the film's ↵Carl Hetherington
channel count. So e.g. if you map the 7.1 surrounds but have a 6-channel film it should consider those channels un-mapped.
2025-10-29White space: transcode_job.{cc,h}Carl Hetherington
2025-10-29White space: kdm_recipient.{cc,h}Carl Hetherington
2025-10-29White space: find_missing.hCarl Hetherington
2025-10-29White space: audio_buffers.{cc,h}Carl Hetherington
2025-10-29White space: audio_analyser.{cc,h}Carl Hetherington
2025-10-29White space: atmos_decoder.{cc,h}Carl Hetherington
2025-10-28Fix decryption import code to work with PKCS1 and PKCS8 formats.Carl Hetherington
PKCS1 uses BEGIN RSA PRIVATE KEY but PKCS8 has only BEGIN PRIVATE KEY
2025-10-28Move decryption {ex,im}port code to a new file.Carl Hetherington
2025-10-27White space: dcp_content.{cc,h}Carl Hetherington
2025-10-27Fix incorrect reading of markers from multi-reel DCPs (#3105).Carl Hetherington
2025-10-25Fix build on Arch with boost 1.89.v2.18.28Carl Hetherington
2025-10-22White space: resampler.{cc,h}Carl Hetherington
2025-10-22Cleanup: header ordering.Carl Hetherington
2025-10-21Fix memory leak when using libicu.Carl Hetherington
2025-10-16Fix long delay in response to 2nd query from client.Carl Hetherington
We only accept one thing at a time, and firefox would make a request, then 2nd request on a different connection. The 2nd request would not be handled until the first had timed out waiting for a request that never came.
2025-10-16Missing parameter name.Carl Hetherington
2025-10-16Potentially fix stopping of sockets.Carl Hetherington
2025-10-16White space.Carl Hetherington
2025-10-16Fix HTTP server when socket is closed.Carl Hetherington
2025-10-16Missing const.Carl Hetherington
2025-10-15White space: check_content_job.{cc,h}Carl Hetherington
2025-10-15Cleanup: compress an if and use a make_shared.Carl Hetherington
2025-10-15Support FFmpeg 8 (for Arch).Carl Hetherington
2025-10-15Disable use of stream IDs if there are duplicates, rather than rewriting.Carl Hetherington
It turns out that FFmpeg decoders (e.g. flv, see FFmpeg 25faaa311a74efdfdc4fed56996d7338ed807488) check stream IDs and sometimes create new streams if they see one that they didn't see before. If we change stream IDs we break this. Here we try to use stream indices in cases where the IDs are duplicated. We also account for the case where a new stream appears during examination. This wasn't covered by tests until the FFmpeg commit mentioned above, were the flv decoder creates a new stream during examination of boon_telly.mkv.
2025-10-15Cleanup: use fmt::to_string().Carl Hetherington
2025-10-15Move two methods into the .ccCarl Hetherington
2025-10-15Cleanup: header sorting.Carl Hetherington