KleidiCV Coverage Report


Directory: ./
File: kleidicv/src/conversions/yuv420sp_to_rgb_sve2.cpp
Date: 2026-01-20 20:58:59
Exec Total Coverage
Lines: 3 3 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // SPDX-FileCopyrightText: 2023 - 2024 Arm Limited and/or its affiliates <open-source-office@arm.com>
2 //
3 // SPDX-License-Identifier: Apache-2.0
4
5 #include "yuv420sp_to_rgb_sc.h"
6
7 namespace kleidicv::sve2 {
8
9 1328 KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t yuv420sp_to_rgb_u8(
10 const uint8_t *src_y, size_t src_y_stride, const uint8_t *src_uv,
11 size_t src_uv_stride, uint8_t *dst, size_t dst_stride, size_t width,
12 size_t height, kleidicv_color_conversion_t color_format) {
13 2656 return yuv420sp_to_rgb_u8_sc(src_y, src_y_stride, src_uv, src_uv_stride, dst,
14 1328 dst_stride, width, height, color_format);
15 }
16
17 } // namespace kleidicv::sve2
18