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

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

Issue 668403002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 2 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
« no previous file with comments | « source/libvpx/test/lpf_8_test.cc ('k') | source/libvpx/test/sad_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
262 262
263 #if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH 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,
272 &vp9_idct32x32_1024_add_c, 272 &vp9_idct32x32_1024_add_c,
273 &vp9_idct32x32_1_add_sse2, 273 &vp9_idct32x32_1_add_sse2,
(...skipping 13 matching lines...) Expand all
287 make_tuple(&vp9_fdct8x8_c, 287 make_tuple(&vp9_fdct8x8_c,
288 &vp9_idct8x8_64_add_c, 288 &vp9_idct8x8_64_add_c,
289 &vp9_idct8x8_1_add_sse2, 289 &vp9_idct8x8_1_add_sse2,
290 TX_8X8, 1), 290 TX_8X8, 1),
291 make_tuple(&vp9_fdct4x4_c, 291 make_tuple(&vp9_fdct4x4_c,
292 &vp9_idct4x4_16_add_c, 292 &vp9_idct4x4_16_add_c,
293 &vp9_idct4x4_1_add_sse2, 293 &vp9_idct4x4_1_add_sse2,
294 TX_4X4, 1))); 294 TX_4X4, 1)));
295 #endif 295 #endif
296 296
297 #if HAVE_SSSE3 && ARCH_X86_64 && !CONFIG_VP9_HIGHBITDEPTH 297 #if HAVE_SSSE3 && ARCH_X86_64 && !CONFIG_VP9_HIGHBITDEPTH && \
298 !CONFIG_EMULATE_HARDWARE
298 INSTANTIATE_TEST_CASE_P( 299 INSTANTIATE_TEST_CASE_P(
299 SSSE3_64, PartialIDctTest, 300 SSSE3_64, PartialIDctTest,
300 ::testing::Values( 301 ::testing::Values(
301 make_tuple(&vp9_fdct8x8_c, 302 make_tuple(&vp9_fdct8x8_c,
302 &vp9_idct8x8_64_add_c, 303 &vp9_idct8x8_64_add_c,
303 &vp9_idct8x8_12_add_ssse3, 304 &vp9_idct8x8_12_add_ssse3,
304 TX_8X8, 12))); 305 TX_8X8, 12)));
305 #endif 306 #endif
306 307
307 #if HAVE_SSSE3 && !CONFIG_VP9_HIGHBITDEPTH 308 #if HAVE_SSSE3 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
308 INSTANTIATE_TEST_CASE_P( 309 INSTANTIATE_TEST_CASE_P(
309 SSSE3, PartialIDctTest, 310 SSSE3, PartialIDctTest,
310 ::testing::Values( 311 ::testing::Values(
311 make_tuple(&vp9_fdct16x16_c, 312 make_tuple(&vp9_fdct16x16_c,
312 &vp9_idct16x16_256_add_c, 313 &vp9_idct16x16_256_add_c,
313 &vp9_idct16x16_10_add_ssse3, 314 &vp9_idct16x16_10_add_ssse3,
314 TX_16X16, 10))); 315 TX_16X16, 10)));
315 #endif 316 #endif
316 } // namespace 317 } // namespace
OLDNEW
« no previous file with comments | « source/libvpx/test/lpf_8_test.cc ('k') | source/libvpx/test/sad_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698