| 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 "rgb_to_yuv_sc.h" | ||
| 6 | |||
| 7 | namespace kleidicv::sme2 { | ||
| 8 | |||
| 9 | KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t | ||
| 10 | 89 | rgba_to_yuv_u8(const uint8_t *src, size_t src_stride, uint8_t *dst, | |
| 11 | size_t dst_stride, size_t width, size_t height) { | ||
| 12 | 89 | return rgba_to_yuv_u8_sc(src, src_stride, dst, dst_stride, width, height); | |
| 13 | } | ||
| 14 | |||
| 15 | KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t | ||
| 16 | 89 | bgra_to_yuv_u8(const uint8_t *src, size_t src_stride, uint8_t *dst, | |
| 17 | size_t dst_stride, size_t width, size_t height) { | ||
| 18 | 89 | return bgra_to_yuv_u8_sc(src, src_stride, dst, dst_stride, width, height); | |
| 19 | } | ||
| 20 | |||
| 21 | } // namespace kleidicv::sme2 | ||
| 22 |