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

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

Issue 290653003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 7 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
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 515 #if HAVE_NEON_ASM
516 INSTANTIATE_TEST_CASE_P( 516 INSTANTIATE_TEST_CASE_P(
517 NEON, Trans16x16DCT, 517 NEON, Trans16x16DCT,
518 ::testing::Values( 518 ::testing::Values(
519 make_tuple(&vp9_fdct16x16_c, 519 make_tuple(&vp9_fdct16x16_c,
520 &vp9_idct16x16_256_add_neon, 0))); 520 &vp9_idct16x16_256_add_neon, 0)));
521 #endif 521 #endif
522 522
523 #if HAVE_SSE2 523 #if HAVE_SSE2
524 INSTANTIATE_TEST_CASE_P( 524 INSTANTIATE_TEST_CASE_P(
525 SSE2, Trans16x16DCT, 525 SSE2, Trans16x16DCT,
526 ::testing::Values( 526 ::testing::Values(
527 make_tuple(&vp9_fdct16x16_sse2, 527 make_tuple(&vp9_fdct16x16_sse2,
528 &vp9_idct16x16_256_add_sse2, 0))); 528 &vp9_idct16x16_256_add_sse2, 0)));
529 INSTANTIATE_TEST_CASE_P( 529 INSTANTIATE_TEST_CASE_P(
530 SSE2, Trans16x16HT, 530 SSE2, Trans16x16HT,
531 ::testing::Values( 531 ::testing::Values(
532 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 0), 532 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 0),
533 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 1), 533 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 1),
534 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 2), 534 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 2),
535 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 3))); 535 make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2, 3)));
536 #endif 536 #endif
537 } // namespace 537 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698