KleidiCV Coverage Report


Directory: ./
File: kleidicv/src/conversions/rgb_to_yuv444_sme.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: 2024 - 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_yuv444_sc.h"
6
7 namespace kleidicv::sme {
8
9 KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t
10 360 rgb_to_yuv444_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) {
13 720 return rgb_to_yuv444_u8_sc(src, src_stride, dst, dst_stride, width, height,
14 360 color_format);
15 }
16
17 } // namespace kleidicv::sme
18