• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *  Copyright (c) 2018 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_VPX_DSP_ARM_VPX_CONVOLVE8_NEON_ASM_H_
12 #define VPX_VPX_DSP_ARM_VPX_CONVOLVE8_NEON_ASM_H_
13 
14 #define DECLARE_FILTER(dir, type)                                  \
15   void vpx_convolve8_##dir##_filter_##type##_neon(                 \
16       const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,      \
17       ptrdiff_t dst_stride, const InterpKernel *filter, int x0_q4, \
18       int x_step_q4, int y0_q4, int y_step_q4, int w, int h);
19 
20 DECLARE_FILTER(horiz, type1)
21 DECLARE_FILTER(avg_horiz, type1)
22 DECLARE_FILTER(horiz, type2)
23 DECLARE_FILTER(avg_horiz, type2)
24 DECLARE_FILTER(vert, type1)
25 DECLARE_FILTER(avg_vert, type1)
26 DECLARE_FILTER(vert, type2)
27 DECLARE_FILTER(avg_vert, type2)
28 
29 #endif  // VPX_VPX_DSP_ARM_VPX_CONVOLVE8_NEON_ASM_H_
30