OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010 The VP8 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 |
11 | 11 |
12 #ifndef SUBPIXEL_X86_H | 12 #ifndef SUBPIXEL_X86_H |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 #define vp8_subpix_bilinear8x8 vp8_bilinear_predict8x8_sse2 | 84 #define vp8_subpix_bilinear8x8 vp8_bilinear_predict8x8_sse2 |
85 | 85 |
86 #endif | 86 #endif |
87 #endif | 87 #endif |
88 | 88 |
89 #if HAVE_SSSE3 | 89 #if HAVE_SSSE3 |
90 extern prototype_subpixel_predict(vp8_sixtap_predict16x16_ssse3); | 90 extern prototype_subpixel_predict(vp8_sixtap_predict16x16_ssse3); |
91 extern prototype_subpixel_predict(vp8_sixtap_predict8x8_ssse3); | 91 extern prototype_subpixel_predict(vp8_sixtap_predict8x8_ssse3); |
92 extern prototype_subpixel_predict(vp8_sixtap_predict8x4_ssse3); | 92 extern prototype_subpixel_predict(vp8_sixtap_predict8x4_ssse3); |
93 extern prototype_subpixel_predict(vp8_sixtap_predict4x4_ssse3); | 93 extern prototype_subpixel_predict(vp8_sixtap_predict4x4_ssse3); |
94 //extern prototype_subpixel_predict(vp8_bilinear_predict16x16_sse2); | 94 extern prototype_subpixel_predict(vp8_bilinear_predict16x16_ssse3); |
95 //extern prototype_subpixel_predict(vp8_bilinear_predict8x8_sse2); | 95 extern prototype_subpixel_predict(vp8_bilinear_predict8x8_ssse3); |
96 | 96 |
97 #if !CONFIG_RUNTIME_CPU_DETECT | 97 #if !CONFIG_RUNTIME_CPU_DETECT |
98 #undef vp8_subpix_sixtap16x16 | 98 #undef vp8_subpix_sixtap16x16 |
99 #define vp8_subpix_sixtap16x16 vp8_sixtap_predict16x16_ssse3 | 99 #define vp8_subpix_sixtap16x16 vp8_sixtap_predict16x16_ssse3 |
100 | 100 |
101 #undef vp8_subpix_sixtap8x8 | 101 #undef vp8_subpix_sixtap8x8 |
102 #define vp8_subpix_sixtap8x8 vp8_sixtap_predict8x8_ssse3 | 102 #define vp8_subpix_sixtap8x8 vp8_sixtap_predict8x8_ssse3 |
103 | 103 |
104 #undef vp8_subpix_sixtap8x4 | 104 #undef vp8_subpix_sixtap8x4 |
105 #define vp8_subpix_sixtap8x4 vp8_sixtap_predict8x4_ssse3 | 105 #define vp8_subpix_sixtap8x4 vp8_sixtap_predict8x4_ssse3 |
106 | 106 |
107 #undef vp8_subpix_sixtap4x4 | 107 #undef vp8_subpix_sixtap4x4 |
108 #define vp8_subpix_sixtap4x4 vp8_sixtap_predict4x4_ssse3 | 108 #define vp8_subpix_sixtap4x4 vp8_sixtap_predict4x4_ssse3 |
109 | 109 |
110 | 110 |
111 //#undef vp8_subpix_bilinear16x16 | 111 #undef vp8_subpix_bilinear16x16 |
112 //#define vp8_subpix_bilinear16x16 vp8_bilinear_predict16x16_sse2 | 112 #define vp8_subpix_bilinear16x16 vp8_bilinear_predict16x16_ssse3 |
113 | 113 |
114 //#undef vp8_subpix_bilinear8x8 | 114 #undef vp8_subpix_bilinear8x8 |
115 //#define vp8_subpix_bilinear8x8 vp8_bilinear_predict8x8_sse2 | 115 #define vp8_subpix_bilinear8x8 vp8_bilinear_predict8x8_ssse3 |
116 | 116 |
117 #endif | 117 #endif |
118 #endif | 118 #endif |
119 | 119 |
120 | 120 |
121 | 121 |
122 #endif | 122 #endif |
OLD | NEW |