| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-06-22 | Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic | Carl Hetherington | |
| 2016-06-22 | Don't bother decoding referenced DCP video if the player will ignore it. | Carl Hetherington | |
| 2016-06-22 | Set AudioDecoder::fast a different way. | Carl Hetherington | |
| 2016-06-22 | Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic | Carl Hetherington | |
| 2016-06-22 | Optimization for the referenced video case. | Carl Hetherington | |
| With referenced video from a DCP decoder, no video will ever be fetched from the decoder. Hence the code to discard given video will be activated after _decoded builds up to the magic size. Before this commit the code would attempt to fill with black up to given frame N (with N very large) from the last frame in _decoded when _decoded had been trimmed. This would result in exponential growth in execution time for the VideoDecoder::give() path. | |||
| 2016-06-22 | A couple of small optimisations. | Carl Hetherington | |
| 2016-06-21 | Make our own DirPicker wider in the new file dialog (#902). | Carl Hetherington | |
| 2016-06-21 | Revert "Use make_shared<>." | Carl Hetherington | |
| Support for this seems to vary wildly across DoM's build targets. Stuff that builds on 16.04 won't build on 14.04, for example. Seems to not be worth the hassle now. This reverts commit 5a5324ed3a381a86dfe0a6e3932c1d58fdcd596f. | |||
| 2016-06-21 | Revert "Revert make_shared<> change which breaks build on some platforms; ↵ | Carl Hetherington | |
| don't know why yet." This reverts commit eb3f28f4e614455a4d070d5fa2caaa24b9d9139c. | |||
| 2016-06-21 | Revert "Odd const fix." | Carl Hetherington | |
| This reverts commit b4f9d2e2c287848623c6dc59d8768c1d5fae15f0. | |||
| 2016-06-21 | Odd const fix. | Carl Hetherington | |
| 2016-06-21 | Revert make_shared<> change which breaks build on some platforms; don't know ↵ | Carl Hetherington | |
| why yet. | |||
| 2016-06-21 | Use make_shared<>. | Carl Hetherington | |
| 2016-06-20 | Pass .ass files to SSAReader. | Carl Hetherington | |
| 2016-06-20 | Fix crash when no video is being encoded. | Carl Hetherington | |
| 2016-06-20 | Updated nl_NL translation from Rob van Nieuwkerk. | Carl Hetherington | |
| 2016-06-20 | Fix missing code to display italic / bold font names. | Carl Hetherington | |
| 2016-06-20 | Hand-apply one pt_BR translation from Mx. | Carl Hetherington | |
| 2016-06-20 | pot/merge. | Carl Hetherington | |
| 2016-06-20 | Updated pt_BR translation from Max M. Fuhlendorf. | Carl Hetherington | |
| 2016-06-20 | pot/merge. | Carl Hetherington | |
| 2016-06-20 | Merge branch 'fix-encoder-threading' of ↵ | Carl Hetherington | |
| ssh://git.carlh.net/home/carl/git/dcpomatic into fix-encoder-threading | |||
| 2016-06-20 | Fix encoder thread interruption. | Carl Hetherington | |
| When an encoder thread is interrupted we just want it silently to stop, so catch boost::thread_interrupted separately and don't pass it on. I believe the interruption of jobs and subsequent catch of boost::thread_interrupted will still work as that's the job thread rather than the encoder threads. | |||
| 2016-06-20 | Fix another case where an exception could be thrown from a destructor. | Carl Hetherington | |
| 2016-06-20 | Encoder shutdown fixes. | Carl Hetherington | |
| Two fixes here; prevent the servers-list-changed callback being called when Encoder is being destroyed, and stop ~Encoder throwing exceptions. I'm not sure if the catch (...) in ~Encoder will hide problems that we should be handling, but I think by the time ~Encoder is happening we'll already have seen any exceptions that we need to report. | |||
| 2016-06-19 | Render bold subtitles correctly in preview / burn-in. | Carl Hetherington | |
| 2016-06-19 | Updated pt_BR translation from Max M. Fuhlendorf. | Carl Hetherington | |
| 2016-06-18 | Parse .ass files using the text subtitle code. | Carl Hetherington | |
| 2016-06-18 | Supporter. | Carl Hetherington | |
| 2016-06-18 | Use wx_to_std and std_to_wx for now. | Carl Hetherington | |
| 2016-06-17 | Add preference for the default number of DCP channels (#897). | Carl Hetherington | |
| 2016-06-17 | Missing virtual destructor. | Carl Hetherington | |
| 2016-06-16 | Fix typo in previous. | Carl Hetherington | |
| 2016-06-16 | Supporter. | Carl Hetherington | |
| 2016-06-16 | Ignore any hidden files when looking for images. | Carl Hetherington | |
| We used to do ._* and .DS_Store but there has been a report of .com.apple.timemachine.supported. | |||
| 2016-06-16 | Potential fix for crash on loading a new film after starting an audio analysis. | Carl Hetherington | |
| 2016-06-16 | Remove seconds from KDM time period specification (#819). | Carl Hetherington | |
| 2016-06-14 | Basic guessing of audio channels from filenames (#393). | Carl Hetherington | |
| 2016-06-14 | Clean up of 3D->2D conversion. | Carl Hetherington | |
| It makes slightly more sense to discard 2D in the Transcoder rather than the Encoder. Unfortunately this requires quite invasive changes, mainly to remove Encoder::_position and instead derive this information from the PlayerVideo that is being handled. This is also nicer than before, I think. A notable change is that in player.cc; using time rather than content_video_to_dcp(). This means we are assuming that the decoder returns video at the time we ask it to, rather than checking what it has returned. I can't think of a problem with this (yet). | |||
| 2016-06-14 | Discard right-eye images when using 3D sources to make 2D DCPs. | Carl Hetherington | |
| 2016-06-14 | Use edit rate not frame rate for displaying rate of DCPs. | Carl Hetherington | |
| 2016-06-14 | Fix subtle bug with 3D and add a explicit to stop it happening again. | Carl Hetherington | |
| 2016-06-14 | Set correct video frame type when importing DCPs (part of #806). | Carl Hetherington | |
| 2016-06-14 | Fix some confusion with filling and VideoFrame. | Carl Hetherington | |
| 2016-06-14 | Add VideoFrame class. | Carl Hetherington | |
| This puts a frame index with an Eyes, which simplifies code in some areas. I can't think of a better name for it, unfortunately. | |||
| 2016-06-14 | Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic | Carl Hetherington | |
| 2016-06-14 | Silly mistake in previous. | Carl Hetherington | |
| 2016-06-13 | Try to fix build. | Carl Hetherington | |
| 2016-06-13 | Improve error messages on failing to load DCP subs. | Carl Hetherington | |
| 2016-06-13 | Fix VideoDecoder::get_video() with 3D. | Carl Hetherington | |
| get_video() promises to return all video frames at the given time, but this wasn't working for none-SBS-3D as it would be satisfied when it got the first (left) frame. Adjust get_video() to get all required frames. This showed up bugs in fill_both_eyes, whereby the from parameter was ignored and the wrong things were done in some cases; video_decoder_fill_test.cc tests this stuff. | |||
