Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: unit_test/unit_test.cc

Issue 1415213002: width and 3 bug fix in odd width support of ARGBToI411 (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/row_any.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 The LibYuv Project Authors. All rights reserved. 2 * Copyright 2011 The LibYuv Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 15 matching lines...) Expand all
26 DEFINE_int32(libyuv_width, 0, "width of test image."); 26 DEFINE_int32(libyuv_width, 0, "width of test image.");
27 DEFINE_int32(libyuv_height, 0, "height of test image."); 27 DEFINE_int32(libyuv_height, 0, "height of test image.");
28 DEFINE_int32(libyuv_repeat, 0, "number of times to repeat test."); 28 DEFINE_int32(libyuv_repeat, 0, "number of times to repeat test.");
29 DEFINE_int32(libyuv_flags, 0, "cpu flags for reference code. 0 = C -1 = asm"); 29 DEFINE_int32(libyuv_flags, 0, "cpu flags for reference code. 0 = C -1 = asm");
30 30
31 // For quicker unittests, default is 128 x 72. But when benchmarking, 31 // For quicker unittests, default is 128 x 72. But when benchmarking,
32 // default to 720p. Allow size to specify. 32 // default to 720p. Allow size to specify.
33 // Set flags to -1 for benchmarking to avoid slower C code. 33 // Set flags to -1 for benchmarking to avoid slower C code.
34 34
35 LibYUVConvertTest::LibYUVConvertTest() : 35 LibYUVConvertTest::LibYUVConvertTest() :
36 benchmark_iterations_(BENCHMARK_ITERATIONS), benchmark_width_(128), 36 benchmark_iterations_(BENCHMARK_ITERATIONS), benchmark_width_(130),
37 benchmark_height_(72), disable_cpu_flags_(0) { 37 benchmark_height_(72), disable_cpu_flags_(0) {
38 const char* repeat = getenv("LIBYUV_REPEAT"); 38 const char* repeat = getenv("LIBYUV_REPEAT");
39 if (repeat) { 39 if (repeat) {
40 benchmark_iterations_ = atoi(repeat); // NOLINT 40 benchmark_iterations_ = atoi(repeat); // NOLINT
41 } 41 }
42 if (FLAGS_libyuv_repeat) { 42 if (FLAGS_libyuv_repeat) {
43 benchmark_iterations_ = FLAGS_libyuv_repeat; 43 benchmark_iterations_ = FLAGS_libyuv_repeat;
44 } 44 }
45 if (benchmark_iterations_ > 1) { 45 if (benchmark_iterations_ > 1) {
46 benchmark_width_ = 1280; 46 benchmark_width_ = 1280;
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 } 303 }
304 304
305 int main(int argc, char** argv) { 305 int main(int argc, char** argv) {
306 ::testing::InitGoogleTest(&argc, argv); 306 ::testing::InitGoogleTest(&argc, argv);
307 // AllowCommandLineParsing allows us to ignore flags passed on to us by 307 // AllowCommandLineParsing allows us to ignore flags passed on to us by
308 // Chromium build bots without having to explicitly disable them. 308 // Chromium build bots without having to explicitly disable them.
309 google::AllowCommandLineReparsing(); 309 google::AllowCommandLineReparsing();
310 google::ParseCommandLineFlags(&argc, &argv, true); 310 google::ParseCommandLineFlags(&argc, &argv, true);
311 return RUN_ALL_TESTS(); 311 return RUN_ALL_TESTS();
312 } 312 }
OLDNEW
« no previous file with comments | « source/row_any.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698