summaryrefslogtreecommitdiff
path: root/libavfilter/vf_colorspace.c
Commit message (Collapse)AuthorAge
* vf_colorspace: don't enable passthrough if bitdepth doesn't match.Ronald S. Bultje2016-05-10
| | | | | | | Also check return value of av_frame_copy() in passthrough mode, so that if a copy fails (as it did here, because bitdepth didn't match), the filter doesn't return success, which would mean sending an uninitialized framebuffer further down the filtergraph.
* vf_colorspace: fix range order.Ronald S. Bultje2016-05-10
|
* vf_colorspace: make whitepoint adaptation mode configurable.Ronald S. Bultje2016-05-10
| | | | | Also add von kries whitepoint adaptation, and add 'identity' to turn whitepoint adaptation off.
* vf_colorspace: add floyd-steinberg dithering option to full conversion.Ronald S. Bultje2016-05-10
|
* lavfi: new colorspace conversion filter.Ronald S. Bultje2016-04-12
The intent here is similar to colormatrix, but it's LGPLv2.1-or-later (instead of GPLv2.0) and supports gamma/chromaticity correction.