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

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

Issue 1579023002: Fix ifdef mismatch for mirroruv (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 4 years, 11 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 | « no previous file | source/rotate.cc » ('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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | source/rotate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698