| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 #define HAS_I422TOARGB4444ROW_NEON | 305 #define HAS_I422TOARGB4444ROW_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_I422TOABGRMATRIXROW_NEON |
| 310 #define HAS_J422TOARGBROW_NEON | 310 #define HAS_J422TOARGBROW_NEON |
| 311 #define HAS_J422TOABGRROW_NEON | 311 #define HAS_J422TOABGRROW_NEON |
| 312 #define HAS_H422TOARGBROW_NEON | 312 #define HAS_H422TOARGBROW_NEON |
| 313 #define HAS_H422TOABGRROW_NEON | 313 #define HAS_H422TOABGRROW_NEON |
| 314 #endif | 314 #endif |
| 315 // #define HAS_I422TOABGRMATRIXROW_NEON | |
| 316 #define HAS_I422TOBGRAROW_NEON | 315 #define HAS_I422TOBGRAROW_NEON |
| 317 #define HAS_I422TORAWROW_NEON | 316 #define HAS_I422TORAWROW_NEON |
| 318 #define HAS_I422TORGB24ROW_NEON | 317 #define HAS_I422TORGB24ROW_NEON |
| 319 #define HAS_I422TORGB565ROW_NEON | 318 #define HAS_I422TORGB565ROW_NEON |
| 320 #define HAS_I422TORGBAROW_NEON | 319 #define HAS_I422TORGBAROW_NEON |
| 321 #define HAS_I422TOUYVYROW_NEON | 320 #define HAS_I422TOUYVYROW_NEON |
| 322 #define HAS_I422TOYUY2ROW_NEON | 321 #define HAS_I422TOYUY2ROW_NEON |
| 323 #define HAS_I444TOARGBROW_NEON | 322 #define HAS_I444TOARGBROW_NEON |
| 324 #define HAS_MERGEUVROW_NEON | 323 #define HAS_MERGEUVROW_NEON |
| 325 #define HAS_MIRRORROW_NEON | 324 #define HAS_MIRRORROW_NEON |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 void I422ToARGBMatrixRow_NEON(const uint8* src_y, | 553 void I422ToARGBMatrixRow_NEON(const uint8* src_y, |
| 555 const uint8* src_u, | 554 const uint8* src_u, |
| 556 const uint8* src_v, | 555 const uint8* src_v, |
| 557 uint8* dst_argb, | 556 uint8* dst_argb, |
| 558 struct YuvConstantsNEON* YuvConstants, | 557 struct YuvConstantsNEON* YuvConstants, |
| 559 int width); | 558 int width); |
| 560 void I422ToABGRMatrixRow_NEON(const uint8* src_y, | 559 void I422ToABGRMatrixRow_NEON(const uint8* src_y, |
| 561 const uint8* src_u, | 560 const uint8* src_u, |
| 562 const uint8* src_v, | 561 const uint8* src_v, |
| 563 uint8* dst_argb, | 562 uint8* dst_argb, |
| 564 struct YuvConstants* YuvConstants, | 563 struct YuvConstantsNEON* YuvConstants, |
| 565 int width); | 564 int width); |
| 566 void I411ToARGBRow_NEON(const uint8* src_y, | 565 void I411ToARGBRow_NEON(const uint8* src_y, |
| 567 const uint8* src_u, | 566 const uint8* src_u, |
| 568 const uint8* src_v, | 567 const uint8* src_v, |
| 569 uint8* dst_argb, | 568 uint8* dst_argb, |
| 570 int width); | 569 int width); |
| 571 void I422ToBGRARow_NEON(const uint8* src_y, | 570 void I422ToBGRARow_NEON(const uint8* src_y, |
| 572 const uint8* src_u, | 571 const uint8* src_u, |
| 573 const uint8* src_v, | 572 const uint8* src_v, |
| 574 uint8* dst_bgra, | 573 uint8* dst_bgra, |
| (...skipping 1466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2041 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, | 2040 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, |
| 2042 int width, | 2041 int width, |
| 2043 const uint8* luma, uint32 lumacoeff); | 2042 const uint8* luma, uint32 lumacoeff); |
| 2044 | 2043 |
| 2045 #ifdef __cplusplus | 2044 #ifdef __cplusplus |
| 2046 } // extern "C" | 2045 } // extern "C" |
| 2047 } // namespace libyuv | 2046 } // namespace libyuv |
| 2048 #endif | 2047 #endif |
| 2049 | 2048 |
| 2050 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT | 2049 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT |
| OLD | NEW |