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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 #endif | 309 #endif |
310 // #define HAS_I422TOABGRMATRIXROW_NEON | 310 // #define HAS_I422TOABGRMATRIXROW_NEON |
311 #define HAS_I422TOBGRAROW_NEON | 311 #define HAS_I422TOBGRAROW_NEON |
312 #define HAS_I422TORAWROW_NEON | 312 #define HAS_I422TORAWROW_NEON |
313 #define HAS_I422TORGB24ROW_NEON | 313 #define HAS_I422TORGB24ROW_NEON |
314 #define HAS_I422TORGB565ROW_NEON | 314 #define HAS_I422TORGB565ROW_NEON |
315 #define HAS_I422TORGBAROW_NEON | 315 #define HAS_I422TORGBAROW_NEON |
316 #define HAS_I422TOUYVYROW_NEON | 316 #define HAS_I422TOUYVYROW_NEON |
317 #define HAS_I422TOYUY2ROW_NEON | 317 #define HAS_I422TOYUY2ROW_NEON |
318 #define HAS_I444TOARGBROW_NEON | 318 #define HAS_I444TOARGBROW_NEON |
| 319 #define HAS_J422TOARGBROW_NEON |
319 #define HAS_MERGEUVROW_NEON | 320 #define HAS_MERGEUVROW_NEON |
320 #define HAS_MIRRORROW_NEON | 321 #define HAS_MIRRORROW_NEON |
321 #define HAS_MIRRORUVROW_NEON | 322 #define HAS_MIRRORUVROW_NEON |
322 #define HAS_NV12TOARGBROW_NEON | 323 #define HAS_NV12TOARGBROW_NEON |
323 #define HAS_NV12TORGB565ROW_NEON | 324 #define HAS_NV12TORGB565ROW_NEON |
324 #define HAS_NV21TOARGBROW_NEON | 325 #define HAS_NV21TOARGBROW_NEON |
325 #define HAS_NV21TORGB565ROW_NEON | 326 #define HAS_NV21TORGB565ROW_NEON |
326 #define HAS_RAWTOARGBROW_NEON | 327 #define HAS_RAWTOARGBROW_NEON |
327 #define HAS_RAWTOUVROW_NEON | 328 #define HAS_RAWTOUVROW_NEON |
328 #define HAS_RAWTOYROW_NEON | 329 #define HAS_RAWTOYROW_NEON |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 void I422ToARGB1555Row_NEON(const uint8* src_y, | 597 void I422ToARGB1555Row_NEON(const uint8* src_y, |
597 const uint8* src_u, | 598 const uint8* src_u, |
598 const uint8* src_v, | 599 const uint8* src_v, |
599 uint8* dst_argb1555, | 600 uint8* dst_argb1555, |
600 int width); | 601 int width); |
601 void I422ToARGB4444Row_NEON(const uint8* src_y, | 602 void I422ToARGB4444Row_NEON(const uint8* src_y, |
602 const uint8* src_u, | 603 const uint8* src_u, |
603 const uint8* src_v, | 604 const uint8* src_v, |
604 uint8* dst_argb4444, | 605 uint8* dst_argb4444, |
605 int width); | 606 int width); |
| 607 void J422ToARGBRow_NEON(const uint8* src_y, |
| 608 const uint8* src_u, |
| 609 const uint8* src_v, |
| 610 uint8* dst_argb, |
| 611 int width); |
606 void NV12ToARGBRow_NEON(const uint8* src_y, | 612 void NV12ToARGBRow_NEON(const uint8* src_y, |
607 const uint8* src_uv, | 613 const uint8* src_uv, |
608 uint8* dst_argb, | 614 uint8* dst_argb, |
609 int width); | 615 int width); |
610 void NV21ToARGBRow_NEON(const uint8* src_y, | 616 void NV21ToARGBRow_NEON(const uint8* src_y, |
611 const uint8* src_vu, | 617 const uint8* src_vu, |
612 uint8* dst_argb, | 618 uint8* dst_argb, |
613 int width); | 619 int width); |
614 void NV12ToRGB565Row_NEON(const uint8* src_y, | 620 void NV12ToRGB565Row_NEON(const uint8* src_y, |
615 const uint8* src_uv, | 621 const uint8* src_uv, |
(...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1662 void I422ToARGB1555Row_Any_NEON(const uint8* src_y, | 1668 void I422ToARGB1555Row_Any_NEON(const uint8* src_y, |
1663 const uint8* src_u, | 1669 const uint8* src_u, |
1664 const uint8* src_v, | 1670 const uint8* src_v, |
1665 uint8* dst_argb, | 1671 uint8* dst_argb, |
1666 int width); | 1672 int width); |
1667 void I422ToRGB565Row_Any_NEON(const uint8* src_y, | 1673 void I422ToRGB565Row_Any_NEON(const uint8* src_y, |
1668 const uint8* src_u, | 1674 const uint8* src_u, |
1669 const uint8* src_v, | 1675 const uint8* src_v, |
1670 uint8* dst_argb, | 1676 uint8* dst_argb, |
1671 int width); | 1677 int width); |
| 1678 void J422ToARGBRow_Any_NEON(const uint8* src_y, |
| 1679 const uint8* src_u, |
| 1680 const uint8* src_v, |
| 1681 uint8* dst_argb, |
| 1682 int width); |
1672 void NV12ToARGBRow_Any_NEON(const uint8* src_y, | 1683 void NV12ToARGBRow_Any_NEON(const uint8* src_y, |
1673 const uint8* src_uv, | 1684 const uint8* src_uv, |
1674 uint8* dst_argb, | 1685 uint8* dst_argb, |
1675 int width); | 1686 int width); |
1676 void NV21ToARGBRow_Any_NEON(const uint8* src_y, | 1687 void NV21ToARGBRow_Any_NEON(const uint8* src_y, |
1677 const uint8* src_uv, | 1688 const uint8* src_uv, |
1678 uint8* dst_argb, | 1689 uint8* dst_argb, |
1679 int width); | 1690 int width); |
1680 void NV12ToRGB565Row_Any_NEON(const uint8* src_y, | 1691 void NV12ToRGB565Row_Any_NEON(const uint8* src_y, |
1681 const uint8* src_uv, | 1692 const uint8* src_uv, |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2016 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, | 2027 void ARGBLumaColorTableRow_SSSE3(const uint8* src_argb, uint8* dst_argb, |
2017 int width, | 2028 int width, |
2018 const uint8* luma, uint32 lumacoeff); | 2029 const uint8* luma, uint32 lumacoeff); |
2019 | 2030 |
2020 #ifdef __cplusplus | 2031 #ifdef __cplusplus |
2021 } // extern "C" | 2032 } // extern "C" |
2022 } // namespace libyuv | 2033 } // namespace libyuv |
2023 #endif | 2034 #endif |
2024 | 2035 |
2025 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT | 2036 #endif // INCLUDE_LIBYUV_ROW_H_ NOLINT |
OLD | NEW |