| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-02-03 | Remove unused variable. | Carl Hetherington | |
| 2024-02-03 | Support alpha blend onto YUV444P9LE and YUV444P10LE (68 and 70). | Carl Hetherington | |
| 2024-02-03 | Fix incorrect pixel formats for tests. | Carl Hetherington | |
| 2024-02-03 | Fix flipped red and blue with rgba64_onto_* tests. | Carl Hetherington | |
| 2023-12-09 | Support YUV422P9LE in alpha_blend() (#2671).notar1 | Carl Hetherington | |
| 2023-09-29 | Support alpha blending 64-bit RGB onto things. | Carl Hetherington | |
| 2023-09-29 | Rename alpha_blend_test_one -> alpha_blend_test_bgra_onto. | Carl Hetherington | |
| 2022-09-10 | Support YUV444P10LE in make_part_black(). | Carl Hetherington | |
| 2022-08-11 | Lower some error thresholds now that check_image() actually works in these ↵ | Carl Hetherington | |
| cases. | |||
| 2022-08-09 | Fix lines down the right-hand-side of exports in some cases. | Carl Hetherington | |
| 2022-06-20 | Remove some debug output. | Carl Hetherington | |
| 2022-06-10 | Fix incorrect burnt-in subtitle colours when burning into a DCP source (#2261). | Carl Hetherington | |
| dcp::combined_rgb_to_xyz was changed in libdcp (the values are no longer scaled by 65535) but DoM wasn't changed, and there was no test to catch it. | |||
| 2022-04-29 | Add image_as_jpeg() | Carl Hetherington | |
| 2022-04-29 | Move Image::as_png() out to image_as_png(). | Carl Hetherington | |
| 2021-09-27 | Test fixes.better-gl | Carl Hetherington | |
| 2021-09-27 | Replace aligned bool with enum Alignment. | Carl Hetherington | |
| 2021-09-27 | Various alignment adjustments. | Carl Hetherington | |
| 2021-05-25 | Move video level conversion for RGB from FFmpegImageProxy to Image. | Carl Hetherington | |
| Since FFmpeg does not do video level conversion for RGB sources when we (sort of) ask it to in Image::crop_scale_window() it seems to make more sense to compensate for that by calling full_to_video_range() in the same place (rather than in FFmpegImageProxy). | |||
| 2021-05-03 | Add pixel format 0 (AV_PIX_FMT_YUV420P) to make_part_black(). | Carl Hetherington | |
| Remainder of fix for #1984. | |||
| 2021-05-03 | Test output tweaks. | Carl Hetherington | |
| 2021-05-03 | Add pixel format 66 (AV_PIX_FMT_YUV422P10LE) to make_part_black(). | Carl Hetherington | |
| Part of fix for #1984. | |||
| 2021-05-03 | C++11 tidying. | Carl Hetherington | |
| 2021-01-27 | Use enum class for VideoRange. | Carl Hetherington | |
| 2021-01-21 | Adapt for libdcp use of enum class. | Carl Hetherington | |
| 2021-01-07 | std::shared_ptr | Carl Hetherington | |
| 2020-11-29 | Move some test references into test-private. | Carl Hetherington | |
| 2020-11-25 | Fix corrupted image when over-cropping black filler frames. | Carl Hetherington | |
| FFmpegDecoder can emit small black frames (128x128 pixels) when it wants to fill in a gap. Image::crop_scale_window would do the wrong thing if we then applied a crop of greater than 128 in either direction; though cropped_size is correctly clamped, the crop value itself was not and is used to calculate the input data pointers. This would result in random frames, usually at the end of DCPs, often made up of blurry colour washes. | |||
| 2020-11-20 | Move make_black_test into image_test. | Carl Hetherington | |
| 2020-11-17 | Fix cropping of subsampled images. | Carl Hetherington | |
| The calculations for how to crop subsampled components of YUV images were wrong, causing strange effects like misregistration of colour components in cropped images. Should fix #1872. | |||
| 2020-11-17 | Use 64-byte alignment for aligned image memory. | Carl Hetherington | |
| FFmpeg uses this values if AVX512 is available, and with only 32-byte alignment I am seeing strange scaling effects whereby crop_scale_window_test7 gives black bars down the right side of cropped images (when run on an i7 7700). | |||
| 2020-11-16 | Make sure we use limited ("video") range data when exporting. | Carl Hetherington | |
| Our export formats all currently use limited range but we weren't making sure data fed to the encoders was limited range. Should fix #1832. | |||
| 2020-11-16 | Obey requests to change the video range of RGB content. | Carl Hetherington | |
| Video that comes in with RGB pixels will not have its video level ranges changed by libswscale (it only does this for YUV and greyscale). Here we add code to do it ourselves for RGB content coming in via image files (e.g. PNG/DPX etc). Part of #1851. | |||
| 2020-10-13 | Fix use of DCPOMATIC_TEST_PRIVATE variable to specify where | Carl Hetherington | |
| test private data is. | |||
| 2020-10-12 | Remove Image/GraphicsMagick dependency. | Carl Hetherington | |
| 2020-04-14 | Use a struct rather than a std::pair as the return type from ImageProxy::image. | Carl Hetherington | |
| 2020-03-11 | Move private_data into TestPaths | Carl Hetherington | |
| 2019-11-05 | Provide some test references. | Carl Hetherington | |
| 2019-11-04 | Fix incorrect images when cropping without stretch. | Carl Hetherington | |
| Always overallocate images so that Image::crop_scale_window is always safe from over-reading buffers. Relates to #1654 and probably #1653. | |||
| 2019-11-04 | Fix out-of-bounds read when cropping JPEG2000 images (#1654). | Carl Hetherington | |
| 2019-11-04 | Add a test to expose #1654, on valgrind at least. | Carl Hetherington | |
| 2019-05-24 | Basic ability to set video range (JPEG/MPEG) at least for YUV content. May ↵ | Carl Hetherington | |
| not work for RGB. See #1509. | |||
| 2019-04-25 | Fix or remove several broken pixel formats in Image::fade and add | Carl Hetherington | |
| unit tests for the remainder. Fixes #1532. | |||
| 2019-03-12 | Fix R/B swap with as_png(); support as_png() for any pixel format.v2.13.129 | Carl Hetherington | |
| 2018-10-12 | Change MagickImageProxy to FFmpegImageProxy and make it use FFmpeg | Carl Hetherington | |
| to decode images. Hence remove {Image,Graphics}Magick. | |||
| 2018-04-13 | Account for J2K decoding at lower-than-maximum resolution when croppingv2.13.14 | Carl Hetherington | |
| the resulting images; fixes #1274. | |||
| 2018-02-02 | A number of unit test fixes. | Carl Hetherington | |
| 2018-01-11 | Harden alpha blend tests and fix alpha_blend again. | Carl Hetherington | |
| 2018-01-10 | Fix yet more pixel order confusions. | Carl Hetherington | |
| 2018-01-02 | Add convert_pixel_format convenience function. | Carl Hetherington | |
| 2017-12-30 | Add new test. | Carl Hetherington | |
