From: Steinar H. Gunderson Date: Wed, 20 May 2020 22:21:08 +0000 (+0200) Subject: Correct a comment in YCbCrConverter. X-Git-Tag: 2.0.0~27 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=911fc5867669e9808da80140b24c819b05471f73 Correct a comment in YCbCrConverter. --- diff --git a/futatabi/ycbcr_converter.h b/futatabi/ycbcr_converter.h index c2ad2fa..237e252 100644 --- a/futatabi/ycbcr_converter.h +++ b/futatabi/ycbcr_converter.h @@ -38,7 +38,7 @@ public: private: movit::YCbCrFormat ycbcr_format; - // Effectively only converts from 4:2:2 to 4:4:4. + // Effectively only converts from 4:2:2 (or 4:2:0, or whatever) to 4:4:4. // TODO: Have a separate version with ResampleEffect, for scaling? std::unique_ptr planar_chain, semiplanar_chain; movit::YCbCrInput *ycbcr_planar_input, *ycbcr_semiplanar_input;