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

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

Issue 1339513003: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « source/libvpx/test/invalid_file_test.cc ('k') | source/libvpx/test/test.mk » ('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) 2014 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2014 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 make_tuple(&wrapper_vertical_16_dual_sse2, 583 make_tuple(&wrapper_vertical_16_dual_sse2,
584 &wrapper_vertical_16_dual_c, 12, 1))); 584 &wrapper_vertical_16_dual_c, 12, 1)));
585 #else 585 #else
586 INSTANTIATE_TEST_CASE_P( 586 INSTANTIATE_TEST_CASE_P(
587 SSE2, Loop8Test6Param, 587 SSE2, Loop8Test6Param,
588 ::testing::Values( 588 ::testing::Values(
589 make_tuple(&vpx_lpf_horizontal_8_sse2, &vpx_lpf_horizontal_8_c, 8, 1), 589 make_tuple(&vpx_lpf_horizontal_8_sse2, &vpx_lpf_horizontal_8_c, 8, 1),
590 make_tuple(&vpx_lpf_horizontal_16_sse2, &vpx_lpf_horizontal_16_c, 8, 1), 590 make_tuple(&vpx_lpf_horizontal_16_sse2, &vpx_lpf_horizontal_16_c, 8, 1),
591 make_tuple(&vpx_lpf_horizontal_16_sse2, &vpx_lpf_horizontal_16_c, 8, 2), 591 make_tuple(&vpx_lpf_horizontal_16_sse2, &vpx_lpf_horizontal_16_c, 8, 2),
592 make_tuple(&vpx_lpf_vertical_8_sse2, &vpx_lpf_vertical_8_c, 8, 1), 592 make_tuple(&vpx_lpf_vertical_8_sse2, &vpx_lpf_vertical_8_c, 8, 1),
593 make_tuple(&wrapper_vertical_16_sse2, &wrapper_vertical_16_c, 8, 1))); 593 make_tuple(&wrapper_vertical_16_sse2, &wrapper_vertical_16_c, 8, 1),
594 make_tuple(&wrapper_vertical_16_dual_sse2,
595 &wrapper_vertical_16_dual_c, 8, 1)));
594 #endif // CONFIG_VP9_HIGHBITDEPTH 596 #endif // CONFIG_VP9_HIGHBITDEPTH
595 #endif 597 #endif
596 598
597 #if HAVE_AVX2 && (!CONFIG_VP9_HIGHBITDEPTH) 599 #if HAVE_AVX2 && (!CONFIG_VP9_HIGHBITDEPTH)
598 INSTANTIATE_TEST_CASE_P( 600 INSTANTIATE_TEST_CASE_P(
599 AVX2, Loop8Test6Param, 601 AVX2, Loop8Test6Param,
600 ::testing::Values( 602 ::testing::Values(
601 make_tuple(&vpx_lpf_horizontal_16_avx2, &vpx_lpf_horizontal_16_c, 8, 1), 603 make_tuple(&vpx_lpf_horizontal_16_avx2, &vpx_lpf_horizontal_16_c, 8, 1),
602 make_tuple(&vpx_lpf_horizontal_16_avx2, &vpx_lpf_horizontal_16_c, 8, 604 make_tuple(&vpx_lpf_horizontal_16_avx2, &vpx_lpf_horizontal_16_c, 8,
603 2))); 605 2)));
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 &vpx_lpf_horizontal_4_dual_c, 8), 709 &vpx_lpf_horizontal_4_dual_c, 8),
708 make_tuple(&vpx_lpf_horizontal_8_dual_msa, 710 make_tuple(&vpx_lpf_horizontal_8_dual_msa,
709 &vpx_lpf_horizontal_8_dual_c, 8), 711 &vpx_lpf_horizontal_8_dual_c, 8),
710 make_tuple(&vpx_lpf_vertical_4_dual_msa, 712 make_tuple(&vpx_lpf_vertical_4_dual_msa,
711 &vpx_lpf_vertical_4_dual_c, 8), 713 &vpx_lpf_vertical_4_dual_c, 8),
712 make_tuple(&vpx_lpf_vertical_8_dual_msa, 714 make_tuple(&vpx_lpf_vertical_8_dual_msa,
713 &vpx_lpf_vertical_8_dual_c, 8))); 715 &vpx_lpf_vertical_8_dual_c, 8)));
714 #endif // HAVE_MSA && (!CONFIG_VP9_HIGHBITDEPTH) 716 #endif // HAVE_MSA && (!CONFIG_VP9_HIGHBITDEPTH)
715 717
716 } // namespace 718 } // namespace
OLDNEW
« no previous file with comments | « source/libvpx/test/invalid_file_test.cc ('k') | source/libvpx/test/test.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698