summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-08-24Add Player::set_always_trim.cpl-trimCarl Hetherington
2020-08-24Add advanced checkbox to set content trim mode.Carl Hetherington
2020-08-24Add trim type property to Content; by content or by playlist.Carl Hetherington
2020-08-17Tidy up resource management of FFmpegFileEncoders so that theyCarl Hetherington
are cleaned up correctly when an error occurs. Adapted from dfac61382f1719f0a879747de43cbc5f9115c2d7 in master.
2020-08-17Report better errors when the butler dies.Carl Hetherington
Adapted from d23f55d8cd73adda823d0a2fcabc129b8845a81 in master.
2020-08-14Fix refusal to start another audio analysis job after cancelling one.v2.15.98Carl Hetherington
2020-08-14Missing copy of icons to .app.Carl Hetherington
2020-08-14Make graphics/update fail on error.v2.15.97Carl Hetherington
2020-08-14Add missing locations icon for macOS player preferences.Carl Hetherington
2020-08-14Fix white space.Carl Hetherington
2020-08-09wxEVT_CREATE appears never to arrive on Windows, so change thingsv2.15.96Carl Hetherington
to create the OpenGL thread on the first paint request.
2020-08-09Remove old comment.Carl Hetherington
2020-08-09Don't call OpenGL functions until the wxGLContext has been created.Carl Hetherington
2020-08-07Add strangely absent private:Carl Hetherington
2020-08-07Fix layout bug where the stuff in the content panel would be completelyCarl Hetherington
hidden in some cases (seen on Linux only, I think). wxDisplay::GetFromWindow sometimes returns -1 (perhaps when multiple monitors are connected) and we have to set the splitter position in this case.
2020-08-07Tone down the disk startup warning a little.Carl Hetherington
2020-08-07Use a much bigger block size when calling fwrite(). Each call to fwrite()Carl Hetherington
writes a few (often around 4) blocks of (I think) directory data to the drive, so if you only fwrite() one block it ends up writing 1 block of "payload" and 4 blocks of "admin". Using bigger blocks makes it faster; an even bigger block than this makes it a little faster still, but not significantly. The extra block writing is seemingly triggered by fwrite() calling ext4_block_cache_write_back(..., 0). A better fix is probably to call this another way, at the end of the file copy.
2020-08-07Check that we have a connection to the disk writer before starting to use it ↵Carl Hetherington
in earnest.
2020-08-07Fix typo in comment.Carl Hetherington
2020-08-07Reduce width of information text in the copy-to-drive job.Carl Hetherington
2020-08-06Try to fix -Wparentheses error on Centos 8.Carl Hetherington
2020-08-05Allow export with one audio stream per channel.v2.15.95Carl Hetherington
2020-08-05Fix thinko in eaedff2a7877fa4b560e0c65ac13ed3dad9437e5Carl Hetherington
2020-08-05Fix typo.Carl Hetherington
2020-08-05Remove some debugging code.Carl Hetherington
2020-08-05Add some more OpenGL debugging.Carl Hetherington
2020-08-05Try to improve layout of the 'write to' radios in the KDM dialog (especially ↵Carl Hetherington
on Windows).
2020-08-04Fix missing fonts in splash.png and try to prevent graphics update happening ↵Carl Hetherington
with missing fonts.
2020-08-04Fix flickering of timecode values on Windows.Carl Hetherington
2020-08-03Fix slightly chopped-off subtitles when there are borders.Carl Hetherington
2020-08-03Add unit test for pulldown detection.Carl Hetherington
2020-08-03Fix number of frames in the pulldown check.Carl Hetherington
2020-08-03Fix incorrect string find logic.Carl Hetherington
2020-08-03Merge branch 'v2.15.x' of ssh://git.carlh.net/home/carl/git/dcpomatic into ↵Carl Hetherington
v2.15.x
2020-08-02Don't terminate if a non-DCP directory is given to Open.Carl Hetherington
2020-08-02Detect soft 2:3 pulldown (telecine) files and decode them at 23.976.Carl Hetherington
DVD rips from NTSC DVDs are sometimes (always?) encoded using soft 2:3 pulldown. The video frames are actually 23.976 but FFmpeg detects them as 29.97. With the current approach of the video decoder ignoring most PTSs and assuming a constant frame rate it is vital that the file contains the number of frames per second that the detected frame rate predicts. This fixes large sync errors with NTSC DVD rips (#1790).
2020-08-02Tweak link button width on GTK3.Carl Hetherington
2020-08-02Some tweaks to examine.pyCarl Hetherington
2020-07-31Fix crash on too-early update of closed caption dialog.Carl Hetherington
2020-07-29Don't display all possible channel checkboxes while the analysisv2.15.94Carl Hetherington
is running as clicking the higher ones will cause an assertion failure.
2020-07-29Fix memory leak which also causes strange flickering in the audioCarl Hetherington
analysis window while the analysis is running.
2020-07-29Fix bugs in thread termination causing occasional pthreadCarl Hetherington
assertion failures. Before this, it was possible for J2KEncoder::terminate_threads() to finish without terminating all threads if the thread _running_ terminate_threads() was itself interrupt()ed. This is because the thread_group::join_all() in terminate_threads() is an interruption point, so it was possible it not to complete but instead to throw interrupted_exception. Then the owning J2KEncoder would be torn down but the threads would still be running, causing use-after-frees. This commit adds some boost::this_thread::disable_interruption objects to ensure that the owning thread is not interrupted while it is being destroyed. Also tidy up code that does this stuff, assuming that it's safe to not call thread::joinable but instead do thread.interrupt(); try { thread.join(); } catch (...) {}
2020-07-29Recover information about closed caption tracks when loading DCPsv2.15.93Carl Hetherington
so that they can be displayed.
2020-07-29clang doesn't have -Wmaybe-uninitializedv2.15.92Carl Hetherington
2020-07-28Fix various problems with the closed caption viewer not being updated properly.v2.15.91Carl Hetherington
2020-07-28Some more warning hiding.Carl Hetherington
2020-07-28Bump lib{dcp,sub}.Carl Hetherington
2020-07-28Give up trying to be selective with -Wno-maybe-uninitializedCarl Hetherington
2020-07-28Python syntax typo.Carl Hetherington
2020-07-28Trying to create export audio encoders with between 9 and 15 channelsCarl Hetherington
inclusive fails, at least for AAC. There's probably a way around this with some FFmpeg-cleverness but for now let's just export any project with more than 8 channels as 16. You could argue that we should offer choices to, for example export 7.1/HI/VN as 7.1 but that sounds fiddly. Fixes #1786.