| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 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 1797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1808 make_tuple(8, 16, &convolve8_dspr2), | 1808 make_tuple(8, 16, &convolve8_dspr2), |
| 1809 make_tuple(16, 16, &convolve8_dspr2), | 1809 make_tuple(16, 16, &convolve8_dspr2), |
| 1810 make_tuple(32, 16, &convolve8_dspr2), | 1810 make_tuple(32, 16, &convolve8_dspr2), |
| 1811 make_tuple(16, 32, &convolve8_dspr2), | 1811 make_tuple(16, 32, &convolve8_dspr2), |
| 1812 make_tuple(32, 32, &convolve8_dspr2), | 1812 make_tuple(32, 32, &convolve8_dspr2), |
| 1813 make_tuple(64, 32, &convolve8_dspr2), | 1813 make_tuple(64, 32, &convolve8_dspr2), |
| 1814 make_tuple(32, 64, &convolve8_dspr2), | 1814 make_tuple(32, 64, &convolve8_dspr2), |
| 1815 make_tuple(64, 64, &convolve8_dspr2))); | 1815 make_tuple(64, 64, &convolve8_dspr2))); |
| 1816 #endif | 1816 #endif |
| 1817 | 1817 |
| 1818 #if HAVE_MSA | 1818 #if 0 // HAVE_MSA |
| 1819 // TODO(parag): enable when function hooks are added |
| 1819 const ConvolveFunctions convolve8_msa( | 1820 const ConvolveFunctions convolve8_msa( |
| 1820 vp9_convolve_copy_msa, vp9_convolve_avg_msa, | 1821 vp9_convolve_copy_msa, vp9_convolve_avg_msa, |
| 1821 vp9_convolve8_horiz_msa, vp9_convolve8_avg_horiz_c, | 1822 vp9_convolve8_horiz_msa, vp9_convolve8_avg_horiz_c, |
| 1822 vp9_convolve8_vert_msa, vp9_convolve8_avg_vert_c, | 1823 vp9_convolve8_vert_msa, vp9_convolve8_avg_vert_c, |
| 1823 vp9_convolve8_msa, vp9_convolve8_avg_c, 0); | 1824 vp9_convolve8_msa, vp9_convolve8_avg_c, 0); |
| 1824 | 1825 |
| 1825 INSTANTIATE_TEST_CASE_P(MSA, ConvolveTest, ::testing::Values( | 1826 INSTANTIATE_TEST_CASE_P(MSA, ConvolveTest, ::testing::Values( |
| 1826 make_tuple(4, 4, &convolve8_msa), | 1827 make_tuple(4, 4, &convolve8_msa), |
| 1827 make_tuple(8, 4, &convolve8_msa), | 1828 make_tuple(8, 4, &convolve8_msa), |
| 1828 make_tuple(4, 8, &convolve8_msa), | 1829 make_tuple(4, 8, &convolve8_msa), |
| 1829 make_tuple(8, 8, &convolve8_msa), | 1830 make_tuple(8, 8, &convolve8_msa), |
| 1830 make_tuple(16, 8, &convolve8_msa), | 1831 make_tuple(16, 8, &convolve8_msa), |
| 1831 make_tuple(8, 16, &convolve8_msa), | 1832 make_tuple(8, 16, &convolve8_msa), |
| 1832 make_tuple(16, 16, &convolve8_msa), | 1833 make_tuple(16, 16, &convolve8_msa), |
| 1833 make_tuple(32, 16, &convolve8_msa), | 1834 make_tuple(32, 16, &convolve8_msa), |
| 1834 make_tuple(16, 32, &convolve8_msa), | 1835 make_tuple(16, 32, &convolve8_msa), |
| 1835 make_tuple(32, 32, &convolve8_msa), | 1836 make_tuple(32, 32, &convolve8_msa), |
| 1836 make_tuple(64, 32, &convolve8_msa), | 1837 make_tuple(64, 32, &convolve8_msa), |
| 1837 make_tuple(32, 64, &convolve8_msa), | 1838 make_tuple(32, 64, &convolve8_msa), |
| 1838 make_tuple(64, 64, &convolve8_msa))); | 1839 make_tuple(64, 64, &convolve8_msa))); |
| 1839 #endif // HAVE_MSA | 1840 #endif // HAVE_MSA |
| 1840 } // namespace | 1841 } // namespace |
| OLD | NEW |