| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // SPDX-FileCopyrightText: 2024 - 2025 Arm Limited and/or its affiliates <open-source-office@arm.com> | ||
| 2 | // | ||
| 3 | // SPDX-License-Identifier: Apache-2.0 | ||
| 4 | |||
| 5 | #include "yuv444_to_rgb_sc.h" | ||
| 6 | namespace kleidicv::sve2 { | ||
| 7 | |||
| 8 | KLEIDICV_TARGET_FN_ATTRS | ||
| 9 | 720 | kleidicv_error_t yuv444_to_rgb_u8(const uint8_t *src, size_t src_stride, | |
| 10 | uint8_t *dst, size_t dst_stride, size_t width, | ||
| 11 | size_t height, | ||
| 12 | kleidicv_color_conversion_t color_format) { | ||
| 13 | 1440 | return yuv444_to_rgb_u8_sc(src, src_stride, dst, dst_stride, width, height, | |
| 14 | 720 | color_format); | |
| 15 | } | ||
| 16 | |||
| 17 | } // namespace kleidicv::sve2 | ||
| 18 |