OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 The LibYuv Project Authors. All rights reserved. | 2 * Copyright 2011 The LibYuv 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 #define HAS_COMPUTECUMULATIVESUMROW_SSE2 | 175 #define HAS_COMPUTECUMULATIVESUMROW_SSE2 |
176 #define HAS_CUMULATIVESUMTOAVERAGEROW_SSE2 | 176 #define HAS_CUMULATIVESUMTOAVERAGEROW_SSE2 |
177 #define HAS_INTERPOLATEROW_SSE2 | 177 #define HAS_INTERPOLATEROW_SSE2 |
178 #define HAS_INTERPOLATEROW_SSSE3 | 178 #define HAS_INTERPOLATEROW_SSSE3 |
179 #define HAS_RGBCOLORTABLEROW_X86 | 179 #define HAS_RGBCOLORTABLEROW_X86 |
180 #define HAS_SOBELROW_SSE2 | 180 #define HAS_SOBELROW_SSE2 |
181 #define HAS_SOBELTOPLANEROW_SSE2 | 181 #define HAS_SOBELTOPLANEROW_SSE2 |
182 #define HAS_SOBELXROW_SSE2 | 182 #define HAS_SOBELXROW_SSE2 |
183 #define HAS_SOBELXYROW_SSE2 | 183 #define HAS_SOBELXYROW_SSE2 |
184 #define HAS_SOBELYROW_SSE2 | 184 #define HAS_SOBELYROW_SSE2 |
| 185 #define HAS_BLENDPLANEROW_SSSE3 |
185 #endif | 186 #endif |
186 | 187 |
187 // The following are available on all x86 platforms, but | 188 // The following are available on all x86 platforms, but |
188 // require VS2012, clang 3.4 or gcc 4.7. | 189 // require VS2012, clang 3.4 or gcc 4.7. |
189 // The code supports NaCL but requires a new compiler and validator. | 190 // The code supports NaCL but requires a new compiler and validator. |
190 #if !defined(LIBYUV_DISABLE_X86) && (defined(VISUALC_HAS_AVX2) || \ | 191 #if !defined(LIBYUV_DISABLE_X86) && (defined(VISUALC_HAS_AVX2) || \ |
191 defined(CLANG_HAS_AVX2) || defined(GCC_HAS_AVX2)) | 192 defined(CLANG_HAS_AVX2) || defined(GCC_HAS_AVX2)) |
192 #define HAS_ARGBCOPYALPHAROW_AVX2 | 193 #define HAS_ARGBCOPYALPHAROW_AVX2 |
193 #define HAS_ARGBCOPYYTOALPHAROW_AVX2 | 194 #define HAS_ARGBCOPYYTOALPHAROW_AVX2 |
194 #define HAS_ARGBMIRRORROW_AVX2 | 195 #define HAS_ARGBMIRRORROW_AVX2 |
(...skipping 1734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1929 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, | 1930 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, |
1930 int width, | 1931 int width, |
1931 const uint8* luma, uint32 lumacoeff); | 1932 const uint8* luma, uint32 lumacoeff); |
1932 | 1933 |
1933 #ifdef __cplusplus | 1934 #ifdef __cplusplus |
1934 } // extern "C" | 1935 } // extern "C" |
1935 } // namespace libyuv | 1936 } // namespace libyuv |
1936 #endif | 1937 #endif |
1937 | 1938 |
1938 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT | 1939 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT |
OLD | NEW |