| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |