X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=ycbcr_input.cpp;h=fe36eb0488922cba13e8e640a6ab8fc7d50a4f01;hp=374237e1d748aaf8e61fd4c0c8e24891d6d00dce;hb=45c9a794d20296b46c5200fde481af9bf9e810f9;hpb=dbdbdd8f13c846ce751dc455ce4d19cbe5dbb232 diff --git a/ycbcr_input.cpp b/ycbcr_input.cpp index 374237e..fe36eb0 100644 --- a/ycbcr_input.cpp +++ b/ycbcr_input.cpp @@ -253,12 +253,20 @@ std::string YCbCrInput::output_fragment_shader() scale[0], scale[1], scale[2]); frag_shader += buf; - float chroma_offset_x = compute_chroma_offset( - ycbcr_format.chroma_x_position, ycbcr_format.chroma_subsampling_x, widths[1]); - float chroma_offset_y = compute_chroma_offset( - ycbcr_format.chroma_y_position, ycbcr_format.chroma_subsampling_y, heights[1]); - sprintf(buf, "const vec2 PREFIX(chroma_offset) = vec2(%.8f, %.8f);\n", - chroma_offset_x, chroma_offset_y); + float cb_offset_x = compute_chroma_offset( + ycbcr_format.cb_x_position, ycbcr_format.chroma_subsampling_x, widths[1]); + float cb_offset_y = compute_chroma_offset( + ycbcr_format.cb_y_position, ycbcr_format.chroma_subsampling_y, heights[1]); + sprintf(buf, "const vec2 PREFIX(cb_offset) = vec2(%.8f, %.8f);\n", + cb_offset_x, cb_offset_y); + frag_shader += buf; + + float cr_offset_x = compute_chroma_offset( + ycbcr_format.cr_x_position, ycbcr_format.chroma_subsampling_x, widths[2]); + float cr_offset_y = compute_chroma_offset( + ycbcr_format.cr_y_position, ycbcr_format.chroma_subsampling_y, heights[2]); + sprintf(buf, "const vec2 PREFIX(cr_offset) = vec2(%.8f, %.8f);\n", + cr_offset_x, cr_offset_y); frag_shader += buf; frag_shader += read_file("ycbcr_input.frag");