| Index: unit_test/unit_test.cc
|
| diff --git a/unit_test/unit_test.cc b/unit_test/unit_test.cc
|
| index 95398285c9c20be31585c4953f95b15b676cb045..e75510fd747fd6ceb299a959e55b586e056e3b4e 100644
|
| --- a/unit_test/unit_test.cc
|
| +++ b/unit_test/unit_test.cc
|
| @@ -25,9 +25,10 @@ unsigned int fastrand_seed = 0xfb;
|
| DEFINE_int32(libyuv_width, 0, "width of test image.");
|
| DEFINE_int32(libyuv_height, 0, "height of test image.");
|
| DEFINE_int32(libyuv_repeat, 0, "number of times to repeat test.");
|
| -DEFINE_int32(libyuv_flags, 0, "cpu flags for reference code. 0 = C -1 = asm");
|
| -DEFINE_int32(libyuv_cpu_info, -1,
|
| - "cpu flags for benchmark code. -1 = SIMD, 1 = C");
|
| +DEFINE_int32(libyuv_flags, 0,
|
| + "cpu flags for reference code. 1 = C, -1 = SIMD");
|
| +DEFINE_int32(libyuv_cpu_info, 0,
|
| + "cpu flags for benchmark code. 1 = C, -1 = SIMD");
|
|
|
| // For quicker unittests, default is 128 x 72. But when benchmarking,
|
| // default to 720p. Allow size to specify.
|
|
|