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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 #define HAS_I422TORGB24ROW_SSSE3 | 122 #define HAS_I422TORGB24ROW_SSSE3 |
123 #define HAS_I422TORGB565ROW_SSSE3 | 123 #define HAS_I422TORGB565ROW_SSSE3 |
124 #define HAS_I422TORGBAROW_SSSE3 | 124 #define HAS_I422TORGBAROW_SSSE3 |
125 #define HAS_I422TOUYVYROW_SSE2 | 125 #define HAS_I422TOUYVYROW_SSE2 |
126 #define HAS_I422TOYUY2ROW_SSE2 | 126 #define HAS_I422TOYUY2ROW_SSE2 |
127 #define HAS_I444TOARGBROW_SSSE3 | 127 #define HAS_I444TOARGBROW_SSSE3 |
128 #define HAS_J400TOARGBROW_SSE2 | 128 #define HAS_J400TOARGBROW_SSE2 |
129 #define HAS_J422TOARGBROW_SSSE3 | 129 #define HAS_J422TOARGBROW_SSSE3 |
130 #define HAS_MERGEUVROW_SSE2 | 130 #define HAS_MERGEUVROW_SSE2 |
131 #define HAS_MIRRORROW_SSSE3 | 131 #define HAS_MIRRORROW_SSSE3 |
132 #define HAS_MIRRORROW_UV_SSSE3 | 132 #define HAS_MIRRORUVROW_SSSE3 |
133 #define HAS_MIRRORUVROW_SSSE3 | 133 #define HAS_MIRRORUVROW_SSSE3 |
134 #define HAS_NV12TOARGBROW_SSSE3 | 134 #define HAS_NV12TOARGBROW_SSSE3 |
135 #define HAS_NV12TORGB565ROW_SSSE3 | 135 #define HAS_NV12TORGB565ROW_SSSE3 |
136 #define HAS_NV21TOARGBROW_SSSE3 | 136 #define HAS_NV21TOARGBROW_SSSE3 |
137 #define HAS_RAWTOARGBROW_SSSE3 | 137 #define HAS_RAWTOARGBROW_SSSE3 |
138 #define HAS_RAWTORGB24ROW_SSSE3 | 138 #define HAS_RAWTORGB24ROW_SSSE3 |
139 #define HAS_RAWTOYROW_SSSE3 | 139 #define HAS_RAWTOYROW_SSSE3 |
140 #define HAS_RGB24TOARGBROW_SSSE3 | 140 #define HAS_RGB24TOARGBROW_SSSE3 |
141 #define HAS_RGB24TOYROW_SSSE3 | 141 #define HAS_RGB24TOYROW_SSSE3 |
142 #define HAS_RGB565TOARGBROW_SSE2 | 142 #define HAS_RGB565TOARGBROW_SSE2 |
(...skipping 1782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1925 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, | 1925 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, |
1926 int width, | 1926 int width, |
1927 const uint8* luma, uint32 lumacoeff); | 1927 const uint8* luma, uint32 lumacoeff); |
1928 | 1928 |
1929 #ifdef __cplusplus | 1929 #ifdef __cplusplus |
1930 } // extern "C" | 1930 } // extern "C" |
1931 } // namespace libyuv | 1931 } // namespace libyuv |
1932 #endif | 1932 #endif |
1933 | 1933 |
1934 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT | 1934 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT |
OLD | NEW |