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

Side by Side Diff: source/libvpx/test/dct16x16_test.cc

Issue 181493009: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « source/libvpx/test/datarate_test.cc ('k') | source/libvpx/test/dct32x32_test.cc » ('j') | 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 (c) 2012 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebM 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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 ::testing::Values( 505 ::testing::Values(
506 make_tuple(&vp9_fdct16x16_c, &vp9_idct16x16_256_add_c, 0))); 506 make_tuple(&vp9_fdct16x16_c, &vp9_idct16x16_256_add_c, 0)));
507 INSTANTIATE_TEST_CASE_P( 507 INSTANTIATE_TEST_CASE_P(
508 C, Trans16x16HT, 508 C, Trans16x16HT,
509 ::testing::Values( 509 ::testing::Values(
510 make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 0), 510 make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 0),
511 make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 1), 511 make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 1),
512 make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 2), 512 make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 2),
513 make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 3))); 513 make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 3)));
514 514
515 #if HAVE_NEON
516 INSTANTIATE_TEST_CASE_P(
517 NEON, Trans16x16DCT,
518 ::testing::Values(
519 make_tuple(&vp9_fdct16x16_c,
520 &vp9_idct16x16_256_add_neon, 0)));
521 #endif
522
515 #if HAVE_SSE2 523 #if HAVE_SSE2
516 INSTANTIATE_TEST_CASE_P( 524 INSTANTIATE_TEST_CASE_P(
517 SSE2, Trans16x16DCT, 525 SSE2, Trans16x16DCT,
518 ::testing::Values( 526 ::testing::Values(
519 make_tuple(&vp9_fdct16x16_sse2, 527 make_tuple(&vp9_fdct16x16_sse2,
520 &vp9_idct16x16_256_add_sse2, 0))); 528 &vp9_idct16x16_256_add_sse2, 0)));
521 INSTANTIATE_TEST_CASE_P( 529 INSTANTIATE_TEST_CASE_P(
522 SSE2, Trans16x16HT, 530 SSE2, Trans16x16HT,
523 ::testing::Values( 531 ::testing::Values(
524 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 0), 532 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 0),
525 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 1), 533 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 1),
526 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 2), 534 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 2),
527 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 3))); 535 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 3)));
528 #endif 536 #endif
529 } // namespace 537 } // namespace
OLDNEW
« no previous file with comments | « source/libvpx/test/datarate_test.cc ('k') | source/libvpx/test/dct32x32_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698