vpx_convolve8_neon_asm.h 1.1 KB

1234567891011121314151617181920212223242526272829
  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. #ifndef VPX_VPX_DSP_ARM_VPX_CONVOLVE8_NEON_ASM_H_
  11. #define VPX_VPX_DSP_ARM_VPX_CONVOLVE8_NEON_ASM_H_
  12. #define DECLARE_FILTER(dir, type) \
  13. void vpx_convolve8_##dir##_filter_##type##_neon( \
  14. const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, \
  15. ptrdiff_t dst_stride, const InterpKernel *filter, int x0_q4, \
  16. int x_step_q4, int y0_q4, int y_step_q4, int w, int h);
  17. DECLARE_FILTER(horiz, type1);
  18. DECLARE_FILTER(avg_horiz, type1);
  19. DECLARE_FILTER(horiz, type2);
  20. DECLARE_FILTER(avg_horiz, type2);
  21. DECLARE_FILTER(vert, type1);
  22. DECLARE_FILTER(avg_vert, type1);
  23. DECLARE_FILTER(vert, type2);
  24. DECLARE_FILTER(avg_vert, type2);
  25. #endif // VPX_VPX_DSP_ARM_VPX_CONVOLVE8_NEON_ASM_H_