X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=ycbcr_422interleaved_input_test.cpp;h=668793ae7f6dd2e60aba5a6eb3844edfbf8ed5b4;hp=9a56fb1621285eecc89932a9f1dc94c4da8c98d5;hb=c72cd5445d110b4519ac6af2f747832e38c3b829;hpb=5f81c29e307735bbadb3c0cb06500af627b2e57a diff --git a/ycbcr_422interleaved_input_test.cpp b/ycbcr_422interleaved_input_test.cpp index 9a56fb1..668793a 100644 --- a/ycbcr_422interleaved_input_test.cpp +++ b/ycbcr_422interleaved_input_test.cpp @@ -36,7 +36,7 @@ TEST(YCbCr422InterleavedInputTest, Simple422) { }; float out_data[4 * width * height]; - EffectChainTester tester(NULL, width, height); + EffectChainTester tester(nullptr, width, height); ImageFormat format; format.color_space = COLORSPACE_sRGB; @@ -82,7 +82,7 @@ TEST(YCbCr422InterleavedInputTest, LumaLinearInterpolation) { }; float out_data[out_width * height]; - EffectChainTester tester(NULL, out_width, height); + EffectChainTester tester(nullptr, out_width, height); ImageFormat format; format.color_space = COLORSPACE_sRGB; @@ -143,7 +143,7 @@ TEST(YCbCr422InterleavedInputTest, DifferentCbAndCrPositioning) { }; float out_data[width * height]; - EffectChainTester tester(NULL, width, height); + EffectChainTester tester(nullptr, width, height); ImageFormat format; format.color_space = COLORSPACE_sRGB; @@ -202,7 +202,7 @@ TEST(YCbCr422InterleavedInputTest, PBO) { glBufferData(GL_PIXEL_UNPACK_BUFFER_ARB, width * height * 2, uyvy, GL_STREAM_DRAW); glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, 0); - EffectChainTester tester(NULL, width, height); + EffectChainTester tester(nullptr, width, height); ImageFormat format; format.color_space = COLORSPACE_sRGB;