Line |
Branch |
Exec |
Source |
1 |
|
|
// SPDX-FileCopyrightText: 2024 Arm Limited and/or its affiliates <open-source-office@arm.com> |
2 |
|
|
// |
3 |
|
|
// SPDX-License-Identifier: Apache-2.0 |
4 |
|
|
|
5 |
|
|
#include "blur_and_downsample_sc.h" |
6 |
|
|
#include "kleidicv/filters/blur_and_downsample.h" |
7 |
|
|
|
8 |
|
|
namespace kleidicv::sve2 { |
9 |
|
|
|
10 |
|
|
KLEIDICV_TARGET_FN_ATTRS |
11 |
|
51 |
kleidicv_error_t kleidicv_blur_and_downsample_stripe_u8( |
12 |
|
|
const uint8_t *src, size_t src_stride, size_t src_width, size_t src_height, |
13 |
|
|
uint8_t *dst, size_t dst_stride, size_t y_begin, size_t y_end, |
14 |
|
|
size_t channels, FixedBorderType fixed_border_type, |
15 |
|
|
kleidicv_filter_context_t *context) { |
16 |
|
51 |
return blur_and_downsample_stripe_u8_sc( |
17 |
|
51 |
src, src_stride, src_width, src_height, dst, dst_stride, y_begin, y_end, |
18 |
|
51 |
channels, fixed_border_type, context); |
19 |
|
|
} |
20 |
|
|
|
21 |
|
|
} // namespace kleidicv::sve2 |
22 |
|
|
|