X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=deinterlace_effect_test.cpp;h=a509f8c270ef17d0f5806bcafa1af5999ac8f1d1;hp=dec132246e09a6aef4e40e41faf66fcce38542f2;hb=037ee905bc05fcbb278ac3a0b1f73249efada9b2;hpb=825ae6ce6e426b11beb9ba2089b2c440e7ed94b2 diff --git a/deinterlace_effect_test.cpp b/deinterlace_effect_test.cpp index dec1322..a509f8c 100644 --- a/deinterlace_effect_test.cpp +++ b/deinterlace_effect_test.cpp @@ -243,11 +243,11 @@ void BM_DeinterlaceEffect(benchmark::State &state, TestFormat format, bool spati unique_ptr out_data(new float[width * height * format.bytes_per_pixel]); for (unsigned i = 0; i < width * field_height * format.bytes_per_pixel; ++i) { - field1[i] = rand(); - field2[i] = rand(); - field3[i] = rand(); - field4[i] = rand(); - field5[i] = rand(); + field1[i] = rand() / (RAND_MAX + 1.0); + field2[i] = rand() / (RAND_MAX + 1.0); + field3[i] = rand() / (RAND_MAX + 1.0); + field4[i] = rand() / (RAND_MAX + 1.0); + field5[i] = rand() / (RAND_MAX + 1.0); } EffectChainTester tester(nullptr, width, height);