| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 ::testing::Values( | 279 ::testing::Values( |
| 280 make_tuple(&vp9_fdct4x4_c, &vp9_idct4x4_16_add_c, 0))); | 280 make_tuple(&vp9_fdct4x4_c, &vp9_idct4x4_16_add_c, 0))); |
| 281 INSTANTIATE_TEST_CASE_P( | 281 INSTANTIATE_TEST_CASE_P( |
| 282 C, Trans4x4HT, | 282 C, Trans4x4HT, |
| 283 ::testing::Values( | 283 ::testing::Values( |
| 284 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 0), | 284 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 0), |
| 285 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 1), | 285 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 1), |
| 286 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 2), | 286 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 2), |
| 287 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 3))); | 287 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 3))); |
| 288 | 288 |
| 289 #if HAVE_NEON |
| 290 INSTANTIATE_TEST_CASE_P( |
| 291 NEON, Trans4x4DCT, |
| 292 ::testing::Values( |
| 293 make_tuple(&vp9_fdct4x4_c, |
| 294 &vp9_idct4x4_16_add_neon, 0))); |
| 295 INSTANTIATE_TEST_CASE_P( |
| 296 DISABLED_NEON, Trans4x4HT, |
| 297 ::testing::Values( |
| 298 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_neon, 0), |
| 299 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_neon, 1), |
| 300 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_neon, 2), |
| 301 make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_neon, 3))); |
| 302 #endif |
| 303 |
| 289 #if HAVE_SSE2 | 304 #if HAVE_SSE2 |
| 290 INSTANTIATE_TEST_CASE_P( | 305 INSTANTIATE_TEST_CASE_P( |
| 291 SSE2, Trans4x4DCT, | 306 SSE2, Trans4x4DCT, |
| 292 ::testing::Values( | 307 ::testing::Values( |
| 293 make_tuple(&vp9_fdct4x4_sse2, | 308 make_tuple(&vp9_fdct4x4_sse2, |
| 294 &vp9_idct4x4_16_add_sse2, 0))); | 309 &vp9_idct4x4_16_add_sse2, 0))); |
| 295 INSTANTIATE_TEST_CASE_P( | 310 INSTANTIATE_TEST_CASE_P( |
| 296 SSE2, Trans4x4HT, | 311 SSE2, Trans4x4HT, |
| 297 ::testing::Values( | 312 ::testing::Values( |
| 298 make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 0), | 313 make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 0), |
| 299 make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 1), | 314 make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 1), |
| 300 make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 2), | 315 make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 2), |
| 301 make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 3))); | 316 make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 3))); |
| 302 #endif | 317 #endif |
| 303 | 318 |
| 304 } // namespace | 319 } // namespace |
| OLD | NEW |