| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-09-30 | Better tidy_for_filename that doesn't screw up with UTF-8. | Carl Hetherington | |
| 2016-09-23 | Fix build of Windows debug version. | Carl Hetherington | |
| 2016-09-21 | Disallow referencing DCPs of different frame rates to the project. | Carl Hetherington | |
| Fix reel calculations of DCPContent under trim. | |||
| 2016-09-21 | Improve test checking. | Carl Hetherington | |
| 2016-09-21 | Trim referred-to DCPs correctly using CPL entry point / duration. | Carl Hetherington | |
| 2016-08-25 | Add channel details to high-audio-level hints (#822). | Carl Hetherington | |
| 2016-08-25 | Make burnt-in subtitle outline width configurable (#940). | Carl Hetherington | |
| 2016-08-24 | Basic template support (#485). | Carl Hetherington | |
| 2016-08-22 | Do full gamma correction etc. when alpha-blending subtitles | Carl Hetherington | |
| onto XYZ images. This fixes colour tints on subtitles burnt into existing DCPs. | |||
| 2016-08-20 | Handle subtitles which contain Pango markup. | Carl Hetherington | |
| 2016-08-17 | Small libdcp API change. | Carl Hetherington | |
| 2016-08-16 | Add a basic test for OV/VF with subs (#928). | Carl Hetherington | |
| 2016-08-12 | Replace incorrect uses of raw_convert with a new locale_convert. | Carl Hetherington | |
| 2016-08-12 | Move raw_convert into libdcp. | Carl Hetherington | |
| 2016-08-12 | Remove all use of stringstream in an attempt to fix | Carl Hetherington | |
| the suspected thread-unsafe crash bugs on OS X. | |||
| 2016-08-04 | Different configuration of filename format for assets / metadata (since ↵ | Carl Hetherington | |
| CPL/PKL files don't refer to reels). | |||
| 2016-08-01 | Simplify NameFormat stuff. | Carl Hetherington | |
| 2016-07-31 | Allow configuration of MXF/XML filenames (part of #710). | Carl Hetherington | |
| 2016-07-28 | Bump for metadata format number increase. | Carl Hetherington | |
| 2016-07-27 | Temporarily increase local encoding thread count during digest test. | Carl Hetherington | |
| 2016-07-27 | Add test of reel digests. | Carl Hetherington | |
| 2016-07-22 | Rename SafeStringStream -> locked_stringstream. Bump deps for removal of ↵ | Carl Hetherington | |
| stringstream. | |||
| 2016-07-20 | Do EncodeServerFinder 'disable' in a more sensible way. | Carl Hetherington | |
| Just stop the threads and clear the server list when stop() is called. | |||
| 2016-07-16 | Remove unused method. | Carl Hetherington | |
| 2016-07-08 | Test start-trim of audio-only content. | Carl Hetherington | |
| 2016-07-08 | Fix failure to analyse audio in some cases. | Carl Hetherington | |
| This fixes audio-only content when the first-emitted audio is not at time zero. This used to cause a seek which is not possible with audio-only. This commit removes the unnecessary seek which was due to missing silent-padding of the first-emitted audio. | |||
| 2016-07-03 | Try to fix Arch build error reported by Markus. | Carl Hetherington | |
| 2016-07-02 | Fix thinkos with marked_up() rendering of bold/italic/underline. | Carl Hetherington | |
| 2016-07-01 | Fix test hash after adding subtitle line spacing to the subtitle content ↵ | Carl Hetherington | |
| identifier. | |||
| 2016-07-01 | Fix SRT tests, and abstract out checking of XML subtitles. | Carl Hetherington | |
| 2016-06-29 | Fix handling of incorrectly-recognised JPEG2000 files. | Carl Hetherington | |
| Previously we asked libdcp whether an imported J2K file was RGB or XYZ. The answer it gives is sometimes wrong, for reasons that are not clear (either the files are not marked correctly, or openjpeg is not parsing whatever metadata correctly). However it seems that, in general, we use the user's specified colour conversion to decide what to do with an image, rather than asking the image what should be done to it. Hence it makes more sense to assume that if a user specifies no colour conversion for a J2K file then the file is XYZ. With preview, the colour conversion from XYZ back to RGB is done by FFmpeg, so we have to set the pixel format correctly on the Image that comes back from J2KImageProxy. Now we get that pixel format from the configured colourspace conversion rather than from openjpeg's guess as to the file's colourspace. It's a bit ugly that the only thing we ask the file about is whether or not it is in YUV (which governs whether or not FFmpeg applies the user's configured YUV-to-RGB conversion). Everything else is decided by the configured conversion. I think there's still some uglyness in here that I can't put my finger on. | |||
| 2016-06-28 | Fix pango markup when rendering subtitles. | Carl Hetherington | |
| 2016-06-24 | Update test/data. | Carl Hetherington | |
| 2016-06-22 | Set AudioDecoder::fast a different way. | 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 | Use make_shared<>. | Carl Hetherington | |
| 2016-06-14 | Update for state file version change. | 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 | Test fix. | Carl Hetherington | |
| 2016-06-13 | Try to fix build. | 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. | |||
| 2016-06-13 | Rename MD5Digester -> Digester. | Carl Hetherington | |
| 2016-06-13 | Add SSA subtitle test. | Carl Hetherington | |
| 2016-06-13 | Add button to move things to the start of reels (#798). | Carl Hetherington | |
| 2016-06-10 | Various updates for subtitle changes. | Carl Hetherington | |
| 2016-06-07 | Fix build on Windows. | Carl Hetherington | |
| 2016-06-07 | Add new test. | Carl Hetherington | |
| 2016-06-07 | Bump test/data for metadata version tweak. | Carl Hetherington | |
