Line |
Branch |
Exec |
Source |
1 |
|
|
// SPDX-FileCopyrightText: 2023 Arm Limited and/or its affiliates <open-source-office@arm.com> |
2 |
|
|
// |
3 |
|
|
// SPDX-License-Identifier: Apache-2.0 |
4 |
|
|
|
5 |
|
|
#include "kleidicv/resize/resize.h" |
6 |
|
|
#include "resize_sc.h" |
7 |
|
|
|
8 |
|
|
namespace kleidicv::sve2 { |
9 |
|
|
|
10 |
|
|
KLEIDICV_TARGET_FN_ATTRS |
11 |
|
130 |
kleidicv_error_t resize_to_quarter_u8(const uint8_t *src, size_t src_stride, |
12 |
|
|
size_t src_width, size_t src_height, |
13 |
|
|
uint8_t *dst, size_t dst_stride, |
14 |
|
|
size_t dst_width, size_t dst_height) { |
15 |
|
260 |
return resize_to_quarter_u8_sc(src, src_stride, src_width, src_height, dst, |
16 |
|
130 |
dst_stride, dst_width, dst_height); |
17 |
|
|
} |
18 |
|
|
|
19 |
|
|
} // namespace kleidicv::sve2 |
20 |
|
|
|