X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=ycbcr.h;h=207be4e98a81963aae12a86f18ff9aa8e5a9000a;hp=e4ca43fa3259f04bd84f27d826dcf5db362a1b02;hb=a2e7b432626b8a2c54cb1ff9d09203f50227fc07;hpb=25162b5457057af3ebcc1649571eeeb923e90098 diff --git a/ycbcr.h b/ycbcr.h index e4ca43f..207be4e 100644 --- a/ycbcr.h +++ b/ycbcr.h @@ -21,7 +21,7 @@ // framebuffer, ie., the range [0.0,1.0] maps to [0,255] for 8-bit // and to [0,1023] (or [0_d,255.75_d] in BT.601 parlance) for 10-bit. // -// BT.701 (page 5) seems to agree with BT.601; it specifies range 16–235 for +// BT.709 (page 5) seems to agree with BT.601; it specifies range 16–235 for // 8-bit luma, and 64–940 for 10-bit luma. This would indicate, for a GPU, // that that for 8-bit mode, the range would be 16/255 to 235/255 // (0.06275 to 0.92157), while for 10-bit, it should be 64/1023 to 940/1023 @@ -33,9 +33,13 @@ // (or destination); the num_levels field is the right place. Most people // will want to simply set this to 256, as 8-bit Y'CbCr is the most common, // but the right value will naturally depend on your input. +// +// We could use unsigned formats (e.g. GL_R8UI), which in a sense would +// solve all of this, but then we'd lose filtering. #include "image_format.h" +#include #include namespace movit { @@ -72,7 +76,13 @@ float compute_chroma_offset(float pos, unsigned subsampling_factor, unsigned res // Given , compute the values needed to turn Y'CbCr into R'G'B'; // first subtract the returned offset, then left-multiply the returned matrix // (the scaling is already folded into it). -void compute_ycbcr_matrix(YCbCrFormat ycbcr_format, float *offset, Eigen::Matrix3d *ycbcr_to_rgb); +// +// is the data type you're rendering from; normally, it would should match +// , but for the special case of 10- and 12-bit Y'CbCr, +// we support storing it in 16-bit formats, which incurs extra scaling factors. +// You can get that scaling factor in if you want. +void compute_ycbcr_matrix(YCbCrFormat ycbcr_format, float *offset, Eigen::Matrix3d *ycbcr_to_rgb, + GLenum type = GL_UNSIGNED_BYTE, double *scale_factor = nullptr); } // namespace movit