summaryrefslogtreecommitdiff
path: root/test/video_level_test.cc
AgeCommit message (Collapse)Author
2021-02-23Verify a whole bunch of DCPs made by unit tests.Carl Hetherington
2021-02-15Test reference tweaks.Carl Hetherington
2021-02-01Use a predictable RNG when adding noise to low-bitrate images.Carl Hetherington
The recovery code assumes that encoding a given frame from the same data will always give the same output; it always encodes frame 0 again to set things up properly and if that frame is a different size to the previous run everything breaks.
2021-01-31More enum class additions.Carl Hetherington
2021-01-27Use enum class for VideoRange.Carl Hetherington
2021-01-07std::shared_ptrCarl Hetherington
2020-11-26macOS build fix.Carl Hetherington
2020-11-20Some tidying up of test Doxygen.Carl Hetherington
2020-11-16Add tests of video range.Carl Hetherington
These should hopefully cover all combinations of input and output range. Fixes #1851.
2020-11-16Obey 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.