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 "yuv_to_rgb_sc.h" |
6 |
|
|
namespace kleidicv::sme { |
7 |
|
|
|
8 |
|
|
KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t |
9 |
|
89 |
yuv_to_rgb_u8(const uint8_t *src, size_t src_stride, uint8_t *dst, |
10 |
|
|
size_t dst_stride, size_t width, size_t height) { |
11 |
|
89 |
return yuv_to_rgb_u8_sc(src, src_stride, dst, dst_stride, width, height); |
12 |
|
|
} |
13 |
|
|
|
14 |
|
|
KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t |
15 |
|
89 |
yuv_to_bgr_u8(const uint8_t *src, size_t src_stride, uint8_t *dst, |
16 |
|
|
size_t dst_stride, size_t width, size_t height) { |
17 |
|
89 |
return yuv_to_bgr_u8_sc(src, src_stride, dst, dst_stride, width, height); |
18 |
|
|
} |
19 |
|
|
|
20 |
|
|
KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t |
21 |
|
89 |
yuv_to_rgba_u8(const uint8_t *src, size_t src_stride, uint8_t *dst, |
22 |
|
|
size_t dst_stride, size_t width, size_t height) { |
23 |
|
89 |
return yuv_to_rgba_u8_sc(src, src_stride, dst, dst_stride, width, height); |
24 |
|
|
} |
25 |
|
|
|
26 |
|
|
KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t |
27 |
|
89 |
yuv_to_bgra_u8(const uint8_t *src, size_t src_stride, uint8_t *dst, |
28 |
|
|
size_t dst_stride, size_t width, size_t height) { |
29 |
|
89 |
return yuv_to_bgra_u8_sc(src, src_stride, dst, dst_stride, width, height); |
30 |
|
|
} |
31 |
|
|
|
32 |
|
|
} // namespace kleidicv::sme |
33 |
|
|
|