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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 // The following are also available on x64 Visual C. | 251 // The following are also available on x64 Visual C. |
252 #if !defined(LIBYUV_DISABLE_X86) && defined (_M_X64) && \ | 252 #if !defined(LIBYUV_DISABLE_X86) && defined (_M_X64) && \ |
253 (!defined(__clang__) || defined(__SSSE3__)) | 253 (!defined(__clang__) || defined(__SSSE3__)) |
254 #define HAS_I422ALPHATOARGBROW_SSSE3 | 254 #define HAS_I422ALPHATOARGBROW_SSSE3 |
255 #define HAS_I422TOARGBROW_SSSE3 | 255 #define HAS_I422TOARGBROW_SSSE3 |
256 #endif | 256 #endif |
257 | 257 |
258 // The following are available on Neon platforms: | 258 // The following are available on Neon platforms: |
259 #if !defined(LIBYUV_DISABLE_NEON) && \ | 259 #if !defined(LIBYUV_DISABLE_NEON) && \ |
260 (defined(__aarch64__) || defined(__ARM_NEON__) || defined(LIBYUV_NEON)) | 260 (defined(__aarch64__) || defined(__ARM_NEON__) || defined(LIBYUV_NEON)) |
| 261 #define HAS_I422ALPHATOARGBROW_NEON |
261 #define HAS_ABGRTOUVROW_NEON | 262 #define HAS_ABGRTOUVROW_NEON |
262 #define HAS_ABGRTOYROW_NEON | 263 #define HAS_ABGRTOYROW_NEON |
263 #define HAS_ARGB1555TOARGBROW_NEON | 264 #define HAS_ARGB1555TOARGBROW_NEON |
264 #define HAS_ARGB1555TOUVROW_NEON | 265 #define HAS_ARGB1555TOUVROW_NEON |
265 #define HAS_ARGB1555TOYROW_NEON | 266 #define HAS_ARGB1555TOYROW_NEON |
266 #define HAS_ARGB4444TOARGBROW_NEON | 267 #define HAS_ARGB4444TOARGBROW_NEON |
267 #define HAS_ARGB4444TOUVROW_NEON | 268 #define HAS_ARGB4444TOUVROW_NEON |
268 #define HAS_ARGB4444TOYROW_NEON | 269 #define HAS_ARGB4444TOYROW_NEON |
269 #define HAS_ARGBSETROW_NEON | 270 #define HAS_ARGBSETROW_NEON |
270 #define HAS_ARGBTOARGB1555ROW_NEON | 271 #define HAS_ARGBTOARGB1555ROW_NEON |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 const uint8* src_v, | 547 const uint8* src_v, |
547 uint8* dst_argb, | 548 uint8* dst_argb, |
548 const struct YuvConstants* yuvconstants, | 549 const struct YuvConstants* yuvconstants, |
549 int width); | 550 int width); |
550 void I422ToARGBRow_NEON(const uint8* src_y, | 551 void I422ToARGBRow_NEON(const uint8* src_y, |
551 const uint8* src_u, | 552 const uint8* src_u, |
552 const uint8* src_v, | 553 const uint8* src_v, |
553 uint8* dst_argb, | 554 uint8* dst_argb, |
554 const struct YuvConstants* yuvconstants, | 555 const struct YuvConstants* yuvconstants, |
555 int width); | 556 int width); |
| 557 void I422AlphaToARGBRow_NEON(const uint8* y_buf, |
| 558 const uint8* u_buf, |
| 559 const uint8* v_buf, |
| 560 const uint8* a_buf, |
| 561 uint8* dst_argb, |
| 562 const struct YuvConstants* yuvconstants, |
| 563 int width); |
556 void I422ToARGBRow_NEON(const uint8* src_y, | 564 void I422ToARGBRow_NEON(const uint8* src_y, |
557 const uint8* src_u, | 565 const uint8* src_u, |
558 const uint8* src_v, | 566 const uint8* src_v, |
559 uint8* dst_argb, | 567 uint8* dst_argb, |
560 const struct YuvConstants* yuvconstants, | 568 const struct YuvConstants* yuvconstants, |
561 int width); | 569 int width); |
562 void I411ToARGBRow_NEON(const uint8* src_y, | 570 void I411ToARGBRow_NEON(const uint8* src_y, |
563 const uint8* src_u, | 571 const uint8* src_u, |
564 const uint8* src_v, | 572 const uint8* src_v, |
565 uint8* dst_argb, | 573 uint8* dst_argb, |
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1526 const uint8* src_v, | 1534 const uint8* src_v, |
1527 uint8* dst_argb, | 1535 uint8* dst_argb, |
1528 const struct YuvConstants* yuvconstants, | 1536 const struct YuvConstants* yuvconstants, |
1529 int width); | 1537 int width); |
1530 void I422ToARGBRow_Any_NEON(const uint8* src_y, | 1538 void I422ToARGBRow_Any_NEON(const uint8* src_y, |
1531 const uint8* src_u, | 1539 const uint8* src_u, |
1532 const uint8* src_v, | 1540 const uint8* src_v, |
1533 uint8* dst_argb, | 1541 uint8* dst_argb, |
1534 const struct YuvConstants* yuvconstants, | 1542 const struct YuvConstants* yuvconstants, |
1535 int width); | 1543 int width); |
| 1544 void I422AlphaToARGBRow_Any_NEON(const uint8* src_y, |
| 1545 const uint8* src_u, |
| 1546 const uint8* src_v, |
| 1547 const uint8* src_a, |
| 1548 uint8* dst_argb, |
| 1549 const struct YuvConstants* yuvconstants, |
| 1550 int width); |
1536 void I411ToARGBRow_Any_NEON(const uint8* src_y, | 1551 void I411ToARGBRow_Any_NEON(const uint8* src_y, |
1537 const uint8* src_u, | 1552 const uint8* src_u, |
1538 const uint8* src_v, | 1553 const uint8* src_v, |
1539 uint8* dst_argb, | 1554 uint8* dst_argb, |
1540 const struct YuvConstants* yuvconstants, | 1555 const struct YuvConstants* yuvconstants, |
1541 int width); | 1556 int width); |
1542 void I422ToRGBARow_Any_NEON(const uint8* src_y, | 1557 void I422ToRGBARow_Any_NEON(const uint8* src_y, |
1543 const uint8* src_u, | 1558 const uint8* src_u, |
1544 const uint8* src_v, | 1559 const uint8* src_v, |
1545 uint8* dst_argb, | 1560 uint8* dst_argb, |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1898 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, | 1913 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, |
1899 int width, | 1914 int width, |
1900 const uint8* luma, uint32 lumacoeff); | 1915 const uint8* luma, uint32 lumacoeff); |
1901 | 1916 |
1902 #ifdef __cplusplus | 1917 #ifdef __cplusplus |
1903 } // extern "C" | 1918 } // extern "C" |
1904 } // namespace libyuv | 1919 } // namespace libyuv |
1905 #endif | 1920 #endif |
1906 | 1921 |
1907 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT | 1922 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT |
OLD | NEW |