X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=ycbcr_input_test.cpp;h=5bd052bc01da0802bb9bf58a162ae87795543dfc;hp=53b828949e89c8b003feb63114345425e6525783;hb=b09a4cb8dec09bcd1e42026d5b229b57e620e47c;hpb=e4962fca40fbd8c229f4ca1103b5addbd7375bd4;ds=sidebyside diff --git a/ycbcr_input_test.cpp b/ycbcr_input_test.cpp index 53b8289..5bd052b 100644 --- a/ycbcr_input_test.cpp +++ b/ycbcr_input_test.cpp @@ -40,8 +40,10 @@ TEST(YCbCrInput, Simple444) { ycbcr_format.full_range = false; ycbcr_format.chroma_subsampling_x = 1; ycbcr_format.chroma_subsampling_y = 1; - ycbcr_format.chroma_x_position = 0.5f; - ycbcr_format.chroma_y_position = 0.5f; + ycbcr_format.cb_x_position = 0.5f; + ycbcr_format.cb_y_position = 0.5f; + ycbcr_format.cr_x_position = 0.5f; + ycbcr_format.cr_y_position = 0.5f; YCbCrInput *input = new YCbCrInput(format, ycbcr_format, width, height); input->set_pixel_data(0, y); @@ -92,8 +94,10 @@ TEST(YCbCrInput, FullRangeRec601) { ycbcr_format.full_range = true; ycbcr_format.chroma_subsampling_x = 1; ycbcr_format.chroma_subsampling_y = 1; - ycbcr_format.chroma_x_position = 0.5f; - ycbcr_format.chroma_y_position = 0.5f; + ycbcr_format.cb_x_position = 0.5f; + ycbcr_format.cb_y_position = 0.5f; + ycbcr_format.cr_x_position = 0.5f; + ycbcr_format.cr_y_position = 0.5f; YCbCrInput *input = new YCbCrInput(format, ycbcr_format, width, height); input->set_pixel_data(0, y); @@ -107,3 +111,249 @@ TEST(YCbCrInput, FullRangeRec601) { // so we need some leeway. expect_equal(expected_data, out_data, 4 * width, height, 0.025, 0.002); } + +TEST(YCbCrInput, Rec709) { + const int width = 1; + const int height = 5; + + // Pure-color test inputs, calculated with the formulas in Rec. 709 + // page 19, items 3.4 and 3.5. + unsigned char y[width * height] = { + 16, 235, 63, 173, 32, + }; + unsigned char cb[width * height] = { + 128, 128, 102, 42, 240, + }; + unsigned char cr[width * height] = { + 128, 128, 240, 26, 118, + }; + float expected_data[4 * width * height] = { + 0.0, 0.0, 0.0, 1.0, + 1.0, 1.0, 1.0, 1.0, + 1.0, 0.0, 0.0, 1.0, + 0.0, 1.0, 0.0, 1.0, + 0.0, 0.0, 1.0, 1.0, + }; + float out_data[4 * width * height]; + + EffectChainTester tester(NULL, width, height); + + ImageFormat format; + format.color_space = COLORSPACE_sRGB; + format.gamma_curve = GAMMA_sRGB; + + YCbCrFormat ycbcr_format; + ycbcr_format.luma_coefficients = YCBCR_REC_709; + ycbcr_format.full_range = false; + ycbcr_format.chroma_subsampling_x = 1; + ycbcr_format.chroma_subsampling_y = 1; + ycbcr_format.cb_x_position = 0.5f; + ycbcr_format.cb_y_position = 0.5f; + ycbcr_format.cr_x_position = 0.5f; + ycbcr_format.cr_y_position = 0.5f; + + YCbCrInput *input = new YCbCrInput(format, ycbcr_format, width, height); + input->set_pixel_data(0, y); + input->set_pixel_data(1, cb); + input->set_pixel_data(2, cr); + tester.get_chain()->add_input(input); + + tester.run(out_data, GL_RGBA, COLORSPACE_sRGB, GAMMA_sRGB); + + // Y'CbCr isn't 100% accurate (the input values are rounded), + // so we need some leeway. + expect_equal(expected_data, out_data, 4 * width, height, 0.025, 0.002); +} + +TEST(YCbCrInput, Subsampling420) { + const int width = 4; + const int height = 4; + + unsigned char y[width * height] = { + 126, 126, 126, 126, + 126, 126, 126, 126, + 126, 126, 126, 126, + 126, 126, 126, 126, + }; + unsigned char cb[(width/2) * (height/2)] = { + 64, 128, + 128, 192, + }; + unsigned char cr[(width/2) * (height/2)] = { + 128, 128, + 128, 128, + }; + + // Note: This is only the blue channel. The chroma samples (with associated + // values for blue) are marked off in comments. + float expected_data[width * height] = { + 0.000, 0.125, 0.375, 0.500, + /* 0.0 */ /* 0.5 */ + 0.125, 0.250, 0.500, 0.625, + + 0.375, 0.500, 0.750, 0.875, + /* 0.5 */ /* 1.0 */ + 0.500, 0.625, 0.875, 1.000, + }; + float out_data[width * height]; + + EffectChainTester tester(NULL, width, height); + + ImageFormat format; + format.color_space = COLORSPACE_sRGB; + format.gamma_curve = GAMMA_sRGB; + + YCbCrFormat ycbcr_format; + ycbcr_format.luma_coefficients = YCBCR_REC_601; + ycbcr_format.full_range = false; + ycbcr_format.chroma_subsampling_x = 2; + ycbcr_format.chroma_subsampling_y = 2; + ycbcr_format.cb_x_position = 0.5f; + ycbcr_format.cb_y_position = 0.5f; + ycbcr_format.cr_x_position = 0.5f; + ycbcr_format.cr_y_position = 0.5f; + + YCbCrInput *input = new YCbCrInput(format, ycbcr_format, width, height); + input->set_pixel_data(0, y); + input->set_pixel_data(1, cb); + input->set_pixel_data(2, cr); + tester.get_chain()->add_input(input); + + tester.run(out_data, GL_BLUE, COLORSPACE_sRGB, GAMMA_sRGB); + + // Y'CbCr isn't 100% accurate (the input values are rounded), + // so we need some leeway. + expect_equal(expected_data, out_data, width, height, 0.01, 0.001); +} + +TEST(YCbCrInput, Subsampling420WithNonCenteredSamples) { + const int width = 4; + const int height = 4; + + unsigned char y[width * height] = { + 126, 126, 126, 126, + 126, 126, 126, 126, + 126, 126, 126, 126, + 126, 126, 126, 126, + }; + unsigned char cb[(width/2) * (height/2)] = { + 64, 128, + 128, 192, + }; + unsigned char cr[(width/2) * (height/2)] = { + 128, 128, + 128, 128, + }; + + // Note: This is only the blue channel. The chroma samples (with associated + // values for blue) are marked off in comments. + float expected_data[width * height] = { + 0.000, 0.250, 0.500, 0.500, + /* 0.0 */ /* 0.5 */ + 0.125, 0.375, 0.625, 0.625, + + 0.375, 0.625, 0.875, 0.875, + /* 0.5 */ /* 1.0 */ + 0.500, 0.750, 1.000, 1.000, + }; + float out_data[width * height]; + + EffectChainTester tester(NULL, width, height); + + ImageFormat format; + format.color_space = COLORSPACE_sRGB; + format.gamma_curve = GAMMA_sRGB; + + YCbCrFormat ycbcr_format; + ycbcr_format.luma_coefficients = YCBCR_REC_601; + ycbcr_format.full_range = false; + ycbcr_format.chroma_subsampling_x = 2; + ycbcr_format.chroma_subsampling_y = 2; + ycbcr_format.cb_x_position = 0.0f; + ycbcr_format.cb_y_position = 0.5f; + ycbcr_format.cr_x_position = 0.0f; + ycbcr_format.cr_y_position = 0.5f; + + YCbCrInput *input = new YCbCrInput(format, ycbcr_format, width, height); + input->set_pixel_data(0, y); + input->set_pixel_data(1, cb); + input->set_pixel_data(2, cr); + tester.get_chain()->add_input(input); + + tester.run(out_data, GL_BLUE, COLORSPACE_sRGB, GAMMA_sRGB); + + // Y'CbCr isn't 100% accurate (the input values are rounded), + // so we need some leeway. + expect_equal(expected_data, out_data, width, height, 0.01, 0.001); +} + +// Yes, some 4:2:2 formats actually have this craziness. +TEST(YCbCrInput, DifferentCbAndCrPositioning) { + const int width = 4; + const int height = 4; + + unsigned char y[width * height] = { + 126, 126, 126, 126, + 126, 126, 126, 126, + 126, 126, 126, 126, + 126, 126, 126, 126, + }; + unsigned char cb[(width/2) * height] = { + 64, 128, + 128, 192, + 128, 128, + 128, 128, + }; + unsigned char cr[(width/2) * height] = { + 48, 128, + 128, 208, + 128, 128, + 128, 128, + }; + + // Chroma samples in this csae are always co-sited with a luma sample; + // their associated color values and position are marked off in comments. + float expected_data_blue[width * height] = { + 0.000 /* 0.0 */, 0.250, 0.500 /* 0.5 */, 0.500, + 0.500 /* 0.5 */, 0.750, 1.000 /* 1.0 */, 1.000, + 0.500 /* 0.5 */, 0.500, 0.500 /* 0.5 */, 0.500, + 0.500 /* 0.5 */, 0.500, 0.500 /* 0.5 */, 0.500, + }; + float expected_data_red[width * height] = { + 0.000, 0.000 /* 0.0 */, 0.250, 0.500 /* 0.5 */, + 0.500, 0.500 /* 0.5 */, 0.750, 1.000 /* 1.0 */, + 0.500, 0.500 /* 0.5 */, 0.500, 0.500 /* 0.5 */, + 0.500, 0.500 /* 0.5 */, 0.500, 0.500 /* 0.5 */, + }; + float out_data[width * height]; + + EffectChainTester tester(NULL, width, height); + + ImageFormat format; + format.color_space = COLORSPACE_sRGB; + format.gamma_curve = GAMMA_sRGB; + + YCbCrFormat ycbcr_format; + ycbcr_format.luma_coefficients = YCBCR_REC_601; + ycbcr_format.full_range = false; + ycbcr_format.chroma_subsampling_x = 2; + ycbcr_format.chroma_subsampling_y = 1; + ycbcr_format.cb_x_position = 0.0f; + ycbcr_format.cb_y_position = 0.5f; + ycbcr_format.cr_x_position = 1.0f; + ycbcr_format.cr_y_position = 0.5f; + + YCbCrInput *input = new YCbCrInput(format, ycbcr_format, width, height); + input->set_pixel_data(0, y); + input->set_pixel_data(1, cb); + input->set_pixel_data(2, cr); + tester.get_chain()->add_input(input); + + // Y'CbCr isn't 100% accurate (the input values are rounded), + // so we need some leeway. + tester.run(out_data, GL_RED, COLORSPACE_sRGB, GAMMA_sRGB); + expect_equal(expected_data_red, out_data, width, height, 0.02, 0.002); + + tester.run(out_data, GL_BLUE, COLORSPACE_sRGB, GAMMA_sRGB); + expect_equal(expected_data_blue, out_data, width, height, 0.01, 0.001); +}