| 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 "rgb_to_yuv444_sc.h" | ||
| 6 | |||
| 7 | namespace kleidicv::sve2 { | ||
| 8 | |||
| 9 | 720 | KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t rgb_to_yuv444_u8( | |
| 10 | const uint8_t *src, size_t src_stride, uint8_t *dst, size_t dst_stride, | ||
| 11 | size_t width, size_t height, kleidicv_color_conversion_t color_format) { | ||
| 12 | 1440 | return rgb_to_yuv444_u8_sc(src, src_stride, dst, dst_stride, width, height, | |
| 13 | 720 | color_format); | |
| 14 | } | ||
| 15 | |||
| 16 | } // namespace kleidicv::sve2 | ||
| 17 |