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

Side by Side Diff: unit_test/scale_test.cc

Issue 1525033005: change scale down by 4 to use rounding. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: scale by 4 uses ssse3 now Created 5 years 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/scale_win.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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 int diff = TestFilter_16(SX(benchmark_width_, nom, denom), \ 291 int diff = TestFilter_16(SX(benchmark_width_, nom, denom), \
292 SX(benchmark_height_, nom, denom), \ 292 SX(benchmark_height_, nom, denom), \
293 DX(benchmark_width_, nom, denom), \ 293 DX(benchmark_width_, nom, denom), \
294 DX(benchmark_height_, nom, denom), \ 294 DX(benchmark_height_, nom, denom), \
295 kFilter##filter, benchmark_iterations_); \ 295 kFilter##filter, benchmark_iterations_); \
296 EXPECT_LE(diff, max_diff); \ 296 EXPECT_LE(diff, max_diff); \
297 } 297 }
298 298
299 // Test a scale factor with all 4 filters. Expect unfiltered to be exact, but 299 // Test a scale factor with all 4 filters. Expect unfiltered to be exact, but
300 // filtering is different fixed point implementations for SSSE3, Neon and C. 300 // filtering is different fixed point implementations for SSSE3, Neon and C.
301 #define TEST_FACTOR(name, nom, denom, maxdiff) \ 301 #define TEST_FACTOR(name, nom, denom, boxdiff) \
302 TEST_FACTOR1(name, None, nom, denom, 0) \ 302 TEST_FACTOR1(name, None, nom, denom, 0) \
303 TEST_FACTOR1(name, Linear, nom, denom, maxdiff) \ 303 TEST_FACTOR1(name, Linear, nom, denom, 3) \
304 TEST_FACTOR1(name, Bilinear, nom, denom, maxdiff) \ 304 TEST_FACTOR1(name, Bilinear, nom, denom, 3) \
305 TEST_FACTOR1(name, Box, nom, denom, maxdiff) 305 TEST_FACTOR1(name, Box, nom, denom, boxdiff)
306 306
307 TEST_FACTOR(2, 1, 2, 0) 307 TEST_FACTOR(2, 1, 2, 0)
308 TEST_FACTOR(4, 1, 4, 3) 308 TEST_FACTOR(4, 1, 4, 0)
309 TEST_FACTOR(8, 1, 8, 3) 309 TEST_FACTOR(8, 1, 8, 3)
310 TEST_FACTOR(3by4, 3, 4, 3) 310 TEST_FACTOR(3by4, 3, 4, 1)
311 TEST_FACTOR(3by8, 3, 8, 3) 311 TEST_FACTOR(3by8, 3, 8, 1)
312 TEST_FACTOR(3, 1, 3, 3) 312 TEST_FACTOR(3, 1, 3, 3)
313 #undef TEST_FACTOR1 313 #undef TEST_FACTOR1
314 #undef TEST_FACTOR 314 #undef TEST_FACTOR
315 #undef SX 315 #undef SX
316 #undef DX 316 #undef DX
317 317
318 #define TEST_SCALETO1(name, width, height, filter, max_diff) \ 318 #define TEST_SCALETO1(name, width, height, filter, max_diff) \
319 TEST_F(LibYUVScaleTest, name##To##width##x##height##_##filter) { \ 319 TEST_F(LibYUVScaleTest, name##To##width##x##height##_##filter) { \
320 int diff = TestFilter(benchmark_width_, benchmark_height_, \ 320 int diff = TestFilter(benchmark_width_, benchmark_height_, \
321 width, height, \ 321 width, height, \
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 TEST_SCALETO(Scale, 1, 1) 355 TEST_SCALETO(Scale, 1, 1)
356 TEST_SCALETO(Scale, 320, 240) 356 TEST_SCALETO(Scale, 320, 240)
357 TEST_SCALETO(Scale, 352, 288) 357 TEST_SCALETO(Scale, 352, 288)
358 TEST_SCALETO(Scale, 569, 480) 358 TEST_SCALETO(Scale, 569, 480)
359 TEST_SCALETO(Scale, 640, 360) 359 TEST_SCALETO(Scale, 640, 360)
360 TEST_SCALETO(Scale, 1280, 720) 360 TEST_SCALETO(Scale, 1280, 720)
361 #undef TEST_SCALETO1 361 #undef TEST_SCALETO1
362 #undef TEST_SCALETO 362 #undef TEST_SCALETO
363 363
364 } // namespace libyuv 364 } // namespace libyuv
OLDNEW
« no previous file with comments | « source/scale_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698