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