Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: include/libyuv/row.h

Issue 2105603002: mingw64 fix (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: row.h fix for mingw as well Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « README.chromium ('k') | include/libyuv/version.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 #define HAS_ARGB1555TOARGBROW_AVX2 255 #define HAS_ARGB1555TOARGBROW_AVX2
256 #define HAS_ARGB4444TOARGBROW_AVX2 256 #define HAS_ARGB4444TOARGBROW_AVX2
257 #define HAS_ARGBTOARGB1555ROW_AVX2 257 #define HAS_ARGBTOARGB1555ROW_AVX2
258 #define HAS_ARGBTOARGB4444ROW_AVX2 258 #define HAS_ARGBTOARGB4444ROW_AVX2
259 #define HAS_ARGBTORGB565ROW_AVX2 259 #define HAS_ARGBTORGB565ROW_AVX2
260 #define HAS_J400TOARGBROW_AVX2 260 #define HAS_J400TOARGBROW_AVX2
261 #define HAS_RGB565TOARGBROW_AVX2 261 #define HAS_RGB565TOARGBROW_AVX2
262 #endif 262 #endif
263 263
264 // The following are also available on x64 Visual C. 264 // The following are also available on x64 Visual C.
265 #if !defined(LIBYUV_DISABLE_X86) && defined (_M_X64) && \ 265 #if !defined(LIBYUV_DISABLE_X86) && defined(_MSC_VER) && defined(_M_X64) && \
266 (!defined(__clang__) || defined(__SSSE3__)) 266 (!defined(__clang__) || defined(__SSSE3__))
267 #define HAS_I422ALPHATOARGBROW_SSSE3 267 #define HAS_I422ALPHATOARGBROW_SSSE3
268 #define HAS_I422TOARGBROW_SSSE3 268 #define HAS_I422TOARGBROW_SSSE3
269 #endif 269 #endif
270 270
271 // The following are available on Neon platforms: 271 // The following are available on Neon platforms:
272 #if !defined(LIBYUV_DISABLE_NEON) && \ 272 #if !defined(LIBYUV_DISABLE_NEON) && \
273 (defined(__aarch64__) || defined(__ARM_NEON__) || defined(LIBYUV_NEON)) 273 (defined(__aarch64__) || defined(__ARM_NEON__) || defined(LIBYUV_NEON))
274 #define HAS_ABGRTOUVROW_NEON 274 #define HAS_ABGRTOUVROW_NEON
275 #define HAS_ABGRTOYROW_NEON 275 #define HAS_ABGRTOYROW_NEON
(...skipping 1654 matching lines...) Expand 10 before | Expand all | Expand 10 after
1930 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, 1930 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb,
1931 int width, 1931 int width,
1932 const uint8* luma, uint32 lumacoeff); 1932 const uint8* luma, uint32 lumacoeff);
1933 1933
1934 #ifdef __cplusplus 1934 #ifdef __cplusplus
1935 } // extern "C" 1935 } // extern "C"
1936 } // namespace libyuv 1936 } // namespace libyuv
1937 #endif 1937 #endif
1938 1938
1939 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT 1939 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT
OLDNEW
« no previous file with comments | « README.chromium ('k') | include/libyuv/version.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698