| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 ::testing::Values(vpx_subtract_block_c)); | 94 ::testing::Values(vpx_subtract_block_c)); |
| 95 | 95 |
| 96 #if HAVE_SSE2 && CONFIG_USE_X86INC | 96 #if HAVE_SSE2 && CONFIG_USE_X86INC |
| 97 INSTANTIATE_TEST_CASE_P(SSE2, VP9SubtractBlockTest, | 97 INSTANTIATE_TEST_CASE_P(SSE2, VP9SubtractBlockTest, |
| 98 ::testing::Values(vpx_subtract_block_sse2)); | 98 ::testing::Values(vpx_subtract_block_sse2)); |
| 99 #endif | 99 #endif |
| 100 #if HAVE_NEON | 100 #if HAVE_NEON |
| 101 INSTANTIATE_TEST_CASE_P(NEON, VP9SubtractBlockTest, | 101 INSTANTIATE_TEST_CASE_P(NEON, VP9SubtractBlockTest, |
| 102 ::testing::Values(vpx_subtract_block_neon)); | 102 ::testing::Values(vpx_subtract_block_neon)); |
| 103 #endif | 103 #endif |
| 104 #if HAVE_MSA |
| 105 INSTANTIATE_TEST_CASE_P(MSA, VP9SubtractBlockTest, |
| 106 ::testing::Values(vpx_subtract_block_msa)); |
| 107 #endif |
| 104 | 108 |
| 105 } // namespace vp9 | 109 } // namespace vp9 |
| OLD | NEW |