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

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

Issue 1353923003: j422toabgr neon port using i422toabgr matrix function. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 5 years, 3 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/row_any.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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 #define HAS_ARGBTOUV444ROW_NEON 292 #define HAS_ARGBTOUV444ROW_NEON
293 #define HAS_ARGBTOUVJROW_NEON 293 #define HAS_ARGBTOUVJROW_NEON
294 #define HAS_ARGBTOUVROW_NEON 294 #define HAS_ARGBTOUVROW_NEON
295 #define HAS_ARGBTOYJROW_NEON 295 #define HAS_ARGBTOYJROW_NEON
296 #define HAS_ARGBTOYROW_NEON 296 #define HAS_ARGBTOYROW_NEON
297 #define HAS_BGRATOUVROW_NEON 297 #define HAS_BGRATOUVROW_NEON
298 #define HAS_BGRATOYROW_NEON 298 #define HAS_BGRATOYROW_NEON
299 #define HAS_COPYROW_NEON 299 #define HAS_COPYROW_NEON
300 #define HAS_J400TOARGBROW_NEON 300 #define HAS_J400TOARGBROW_NEON
301 #define HAS_I411TOARGBROW_NEON 301 #define HAS_I411TOARGBROW_NEON
302 #define HAS_I422TOARGBROW_NEON
302 #define HAS_I422TOABGRROW_NEON 303 #define HAS_I422TOABGRROW_NEON
303 #define HAS_I422TOARGB1555ROW_NEON 304 #define HAS_I422TOARGB1555ROW_NEON
304 #define HAS_I422TOARGB4444ROW_NEON 305 #define HAS_I422TOARGB4444ROW_NEON
305 #define HAS_I422TOARGBROW_NEON
306 // TODO(fbarchard): Implement aarch64 neon version 306 // TODO(fbarchard): Implement aarch64 neon version
307 #ifndef __aarch64__ 307 #ifndef __aarch64__
308 #define HAS_I422TOARGBMATRIXROW_NEON 308 #define HAS_I422TOARGBMATRIXROW_NEON
309 #define HAS_I422TOABGRMATRIXROW_NEON
309 #define HAS_J422TOARGBROW_NEON 310 #define HAS_J422TOARGBROW_NEON
311 #define HAS_J422TOABGRROW_NEON
310 #define HAS_H422TOARGBROW_NEON 312 #define HAS_H422TOARGBROW_NEON
313 #define HAS_H422TOABGRROW_NEON
311 #endif 314 #endif
312 // #define HAS_I422TOABGRMATRIXROW_NEON 315 // #define HAS_I422TOABGRMATRIXROW_NEON
313 #define HAS_I422TOBGRAROW_NEON 316 #define HAS_I422TOBGRAROW_NEON
314 #define HAS_I422TORAWROW_NEON 317 #define HAS_I422TORAWROW_NEON
315 #define HAS_I422TORGB24ROW_NEON 318 #define HAS_I422TORGB24ROW_NEON
316 #define HAS_I422TORGB565ROW_NEON 319 #define HAS_I422TORGB565ROW_NEON
317 #define HAS_I422TORGBAROW_NEON 320 #define HAS_I422TORGBAROW_NEON
318 #define HAS_I422TOUYVYROW_NEON 321 #define HAS_I422TOUYVYROW_NEON
319 #define HAS_I422TOYUY2ROW_NEON 322 #define HAS_I422TOYUY2ROW_NEON
320 #define HAS_I444TOARGBROW_NEON 323 #define HAS_I444TOARGBROW_NEON
(...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after
2038 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, 2041 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb,
2039 int width, 2042 int width,
2040 const uint8* luma, uint32 lumacoeff); 2043 const uint8* luma, uint32 lumacoeff);
2041 2044
2042 #ifdef __cplusplus 2045 #ifdef __cplusplus
2043 } // extern "C" 2046 } // extern "C"
2044 } // namespace libyuv 2047 } // namespace libyuv
2045 #endif 2048 #endif
2046 2049
2047 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT 2050 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT
OLDNEW
« no previous file with comments | « no previous file | source/row_any.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698