]> git.sesse.net Git - movit/commitdiff
Fix some invalid code in DeinterlaceTest; GCC 7 would optimize it into simply an...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 12 Nov 2017 00:30:01 +0000 (01:30 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 12 Nov 2017 00:30:01 +0000 (01:30 +0100)
deinterlace_effect_test.cpp

index 31bd363024bb22ef3db70b51a1a29608b3b29abc..24e11a2bbbc6c7b79383eae914737672d2377a99 100644 (file)
@@ -74,7 +74,7 @@ TEST(DeinterlaceTest, VerticalInterpolation) {
        // Set previous and next fields to something so big that all the temporal checks
        // are effectively turned off.
        fill(neg_blowout_data, neg_blowout_data + width * height, -100.0f);
-       fill(neg_blowout_data, pos_blowout_data + width * height,  100.0f);
+       fill(pos_blowout_data, pos_blowout_data + width * height,  100.0f);
 
        EffectChainTester tester(NULL, width, height * 2);
        Effect *input1 = tester.add_input(neg_blowout_data, FORMAT_GRAYSCALE, COLORSPACE_sRGB, GAMMA_LINEAR, width, height);