| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 #define HAS_ARGBTOYJROW_SSSE3 | 100 #define HAS_ARGBTOYJROW_SSSE3 |
| 101 #define HAS_ARGBTOYROW_SSSE3 | 101 #define HAS_ARGBTOYROW_SSSE3 |
| 102 #define HAS_BGRATOUVROW_SSSE3 | 102 #define HAS_BGRATOUVROW_SSSE3 |
| 103 #define HAS_BGRATOYROW_SSSE3 | 103 #define HAS_BGRATOYROW_SSSE3 |
| 104 #define HAS_COPYROW_ERMS | 104 #define HAS_COPYROW_ERMS |
| 105 #define HAS_COPYROW_SSE2 | 105 #define HAS_COPYROW_SSE2 |
| 106 #define HAS_H422TOARGBROW_SSSE3 | 106 #define HAS_H422TOARGBROW_SSSE3 |
| 107 #define HAS_I400TOARGBROW_SSE2 | 107 #define HAS_I400TOARGBROW_SSE2 |
| 108 // The following functions fail on gcc/clang 32 bit. | 108 // The following functions fail on gcc/clang 32 bit. |
| 109 // caveat: clangcl uses row_win.cc which works. | 109 // caveat: clangcl uses row_win.cc which works. |
| 110 #if !defined(__i386__) || !defined(DEBUG) || defined(_MSC_VER) | 110 #if !(defined(DEBUG) || defined(_DEBUG)) || !defined(__i386__) || \ |
| 111 defined(_MSC_VER) |
| 111 // TODO(fbarchard): fix build error on x86 debug | 112 // TODO(fbarchard): fix build error on x86 debug |
| 112 // https://code.google.com/p/libyuv/issues/detail?id=524 | 113 // https://code.google.com/p/libyuv/issues/detail?id=524 |
| 113 #define HAS_I411TOARGBROW_SSSE3 | 114 #define HAS_I411TOARGBROW_SSSE3 |
| 114 // TODO(fbarchard): fix build error on android_full_debug=1 | 115 // TODO(fbarchard): fix build error on android_full_debug=1 |
| 115 // https://code.google.com/p/libyuv/issues/detail?id=517 | 116 // https://code.google.com/p/libyuv/issues/detail?id=517 |
| 116 #define HAS_I422ALPHATOARGBROW_SSSE3 | 117 #define HAS_I422ALPHATOARGBROW_SSSE3 |
| 117 #endif | 118 #endif |
| 118 #define HAS_I422TOARGB1555ROW_SSSE3 | 119 #define HAS_I422TOARGB1555ROW_SSSE3 |
| 119 #define HAS_I422TOARGB4444ROW_SSSE3 | 120 #define HAS_I422TOARGB4444ROW_SSSE3 |
| 120 #define HAS_I422TOARGBROW_SSSE3 | 121 #define HAS_I422TOARGBROW_SSSE3 |
| (...skipping 1810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1931 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, | 1932 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, |
| 1932 int width, | 1933 int width, |
| 1933 const uint8* luma, uint32 lumacoeff); | 1934 const uint8* luma, uint32 lumacoeff); |
| 1934 | 1935 |
| 1935 #ifdef __cplusplus | 1936 #ifdef __cplusplus |
| 1936 } // extern "C" | 1937 } // extern "C" |
| 1937 } // namespace libyuv | 1938 } // namespace libyuv |
| 1938 #endif | 1939 #endif |
| 1939 | 1940 |
| 1940 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT | 1941 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT |
| OLD | NEW |