KleidiCV Coverage Report


Directory: ./
File: kleidicv/src/conversions/yuv422_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: 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/yuv_to_rgb.h"
6 #include "yuv422_to_rgb_sc.h"
7
8 namespace kleidicv::sve2 {
9
10 KLEIDICV_TARGET_FN_ATTRS
11 1096 kleidicv_error_t yuv422_to_rgb_u8(const uint8_t* src, size_t src_stride,
12 uint8_t* dst, size_t dst_stride, size_t width,
13 size_t height,
14 kleidicv_color_conversion_t color_format) {
15 2192 return yuv422_to_rgb_u8_sc(src, src_stride, dst, dst_stride, width, height,
16 1096 color_format);
17 }
18
19 } // namespace kleidicv::sve2
20