OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 TX_8X8, 12), | 223 TX_8X8, 12), |
224 make_tuple(&vp9_fdct8x8_c, | 224 make_tuple(&vp9_fdct8x8_c, |
225 &vp9_idct8x8_64_add_c, | 225 &vp9_idct8x8_64_add_c, |
226 &vp9_idct8x8_1_add_c, | 226 &vp9_idct8x8_1_add_c, |
227 TX_8X8, 1), | 227 TX_8X8, 1), |
228 make_tuple(&vp9_fdct4x4_c, | 228 make_tuple(&vp9_fdct4x4_c, |
229 &vp9_idct4x4_16_add_c, | 229 &vp9_idct4x4_16_add_c, |
230 &vp9_idct4x4_1_add_c, | 230 &vp9_idct4x4_1_add_c, |
231 TX_4X4, 1))); | 231 TX_4X4, 1))); |
232 | 232 |
233 #if HAVE_NEON_ASM | 233 #if HAVE_NEON |
234 INSTANTIATE_TEST_CASE_P( | 234 INSTANTIATE_TEST_CASE_P( |
235 NEON, PartialIDctTest, | 235 NEON, PartialIDctTest, |
236 ::testing::Values( | 236 ::testing::Values( |
237 make_tuple(&vp9_fdct32x32_c, | 237 make_tuple(&vp9_fdct32x32_c, |
238 &vp9_idct32x32_1024_add_c, | 238 &vp9_idct32x32_1024_add_c, |
239 &vp9_idct32x32_1_add_neon, | 239 &vp9_idct32x32_1_add_neon, |
240 TX_32X32, 1), | 240 TX_32X32, 1), |
241 make_tuple(&vp9_fdct16x16_c, | 241 make_tuple(&vp9_fdct16x16_c, |
242 &vp9_idct16x16_256_add_c, | 242 &vp9_idct16x16_256_add_c, |
243 &vp9_idct16x16_10_add_neon, | 243 &vp9_idct16x16_10_add_neon, |
244 TX_16X16, 10), | 244 TX_16X16, 10), |
245 make_tuple(&vp9_fdct16x16_c, | 245 make_tuple(&vp9_fdct16x16_c, |
246 &vp9_idct16x16_256_add_c, | 246 &vp9_idct16x16_256_add_c, |
247 &vp9_idct16x16_1_add_neon, | 247 &vp9_idct16x16_1_add_neon, |
248 TX_16X16, 1), | 248 TX_16X16, 1), |
249 make_tuple(&vp9_fdct8x8_c, | 249 make_tuple(&vp9_fdct8x8_c, |
250 &vp9_idct8x8_64_add_c, | 250 &vp9_idct8x8_64_add_c, |
251 &vp9_idct8x8_12_add_neon, | 251 &vp9_idct8x8_12_add_neon, |
252 TX_8X8, 12), | 252 TX_8X8, 12), |
253 make_tuple(&vp9_fdct8x8_c, | 253 make_tuple(&vp9_fdct8x8_c, |
254 &vp9_idct8x8_64_add_c, | 254 &vp9_idct8x8_64_add_c, |
255 &vp9_idct8x8_1_add_neon, | 255 &vp9_idct8x8_1_add_neon, |
256 TX_8X8, 1), | 256 TX_8X8, 1), |
257 make_tuple(&vp9_fdct4x4_c, | 257 make_tuple(&vp9_fdct4x4_c, |
258 &vp9_idct4x4_16_add_c, | 258 &vp9_idct4x4_16_add_c, |
259 &vp9_idct4x4_1_add_neon, | 259 &vp9_idct4x4_1_add_neon, |
260 TX_4X4, 1))); | 260 TX_4X4, 1))); |
261 #endif | 261 #endif // HAVE_NEON |
262 | 262 |
263 #if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE | 263 #if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
264 INSTANTIATE_TEST_CASE_P( | 264 INSTANTIATE_TEST_CASE_P( |
265 SSE2, PartialIDctTest, | 265 SSE2, PartialIDctTest, |
266 ::testing::Values( | 266 ::testing::Values( |
267 make_tuple(&vp9_fdct32x32_c, | 267 make_tuple(&vp9_fdct32x32_c, |
268 &vp9_idct32x32_1024_add_c, | 268 &vp9_idct32x32_1024_add_c, |
269 &vp9_idct32x32_34_add_sse2, | 269 &vp9_idct32x32_34_add_sse2, |
270 TX_32X32, 34), | 270 TX_32X32, 34), |
271 make_tuple(&vp9_fdct32x32_c, | 271 make_tuple(&vp9_fdct32x32_c, |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 #if HAVE_SSSE3 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE | 308 #if HAVE_SSSE3 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
309 INSTANTIATE_TEST_CASE_P( | 309 INSTANTIATE_TEST_CASE_P( |
310 SSSE3, PartialIDctTest, | 310 SSSE3, PartialIDctTest, |
311 ::testing::Values( | 311 ::testing::Values( |
312 make_tuple(&vp9_fdct16x16_c, | 312 make_tuple(&vp9_fdct16x16_c, |
313 &vp9_idct16x16_256_add_c, | 313 &vp9_idct16x16_256_add_c, |
314 &vp9_idct16x16_10_add_ssse3, | 314 &vp9_idct16x16_10_add_ssse3, |
315 TX_16X16, 10))); | 315 TX_16X16, 10))); |
316 #endif | 316 #endif |
317 } // namespace | 317 } // namespace |
OLD | NEW |