| 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 "yuv420p_to_rgb_sc.h" | ||
| 6 | |||
| 7 | namespace kleidicv::sme { | ||
| 8 | |||
| 9 | KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t | ||
| 10 | 673 | yuv420p_to_rgb_stripe_u8(const uint8_t* src, size_t src_stride, uint8_t* dst, | |
| 11 | size_t dst_stride, size_t width, size_t height, | ||
| 12 | kleidicv_color_conversion_t color_format, size_t begin, | ||
| 13 | size_t end) { | ||
| 14 | 1346 | return yuv420p_to_rgb_stripe_u8_sc(src, src_stride, dst, dst_stride, width, | |
| 15 | 673 | height, color_format, begin, end); | |
| 16 | } | ||
| 17 | |||
| 18 | } // namespace kleidicv::sme | ||
| 19 |