1 /* 2 * Copyright (c) 2019 The WebM project authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 #ifndef VPX_VP8_COMMON_ARM_LOOPFILTER_ARM_H_ 12 #define VPX_VP8_COMMON_ARM_LOOPFILTER_ARM_H_ 13 14 typedef void loopfilter_y_neon(unsigned char *src, int pitch, 15 unsigned char blimit, unsigned char limit, 16 unsigned char thresh); 17 typedef void loopfilter_uv_neon(unsigned char *u, int pitch, 18 unsigned char blimit, unsigned char limit, 19 unsigned char thresh, unsigned char *v); 20 21 loopfilter_y_neon vp8_loop_filter_horizontal_edge_y_neon; 22 loopfilter_y_neon vp8_loop_filter_vertical_edge_y_neon; 23 loopfilter_uv_neon vp8_loop_filter_horizontal_edge_uv_neon; 24 loopfilter_uv_neon vp8_loop_filter_vertical_edge_uv_neon; 25 26 loopfilter_y_neon vp8_mbloop_filter_horizontal_edge_y_neon; 27 loopfilter_y_neon vp8_mbloop_filter_vertical_edge_y_neon; 28 loopfilter_uv_neon vp8_mbloop_filter_horizontal_edge_uv_neon; 29 loopfilter_uv_neon vp8_mbloop_filter_vertical_edge_uv_neon; 30 31 #endif // VPX_VP8_COMMON_ARM_LOOPFILTER_ARM_H_ 32