highbd_vpx_convolve_neon.c 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (c) 2016 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. #include "./vpx_dsp_rtcd.h"
  11. #include "vpx_dsp/vpx_dsp_common.h"
  12. #include "vpx_dsp/vpx_filter.h"
  13. #include "vpx_ports/mem.h"
  14. void vpx_highbd_convolve8_neon(const uint16_t *src, ptrdiff_t src_stride,
  15. uint16_t *dst, ptrdiff_t dst_stride,
  16. const InterpKernel *filter, int x0_q4,
  17. int x_step_q4, int y0_q4, int y_step_q4, int w,
  18. int h, int bd) {
  19. // + 1 to make it divisible by 4
  20. uint16_t temp[64 * 136];
  21. const int intermediate_height =
  22. (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS;
  23. /* Filter starting 3 lines back. The neon implementation will ignore the given
  24. * height and filter a multiple of 4 lines. Since this goes in to the temp
  25. * buffer which has lots of extra room and is subsequently discarded this is
  26. * safe if somewhat less than ideal. */
  27. vpx_highbd_convolve8_horiz_neon(src - src_stride * 3, src_stride, temp, w,
  28. filter, x0_q4, x_step_q4, y0_q4, y_step_q4, w,
  29. intermediate_height, bd);
  30. /* Step into the temp buffer 3 lines to get the actual frame data */
  31. vpx_highbd_convolve8_vert_neon(temp + w * 3, w, dst, dst_stride, filter,
  32. x0_q4, x_step_q4, y0_q4, y_step_q4, w, h, bd);
  33. }
  34. void vpx_highbd_convolve8_avg_neon(const uint16_t *src, ptrdiff_t src_stride,
  35. uint16_t *dst, ptrdiff_t dst_stride,
  36. const InterpKernel *filter, int x0_q4,
  37. int x_step_q4, int y0_q4, int y_step_q4,
  38. int w, int h, int bd) {
  39. // + 1 to make it divisible by 4
  40. uint16_t temp[64 * 136];
  41. const int intermediate_height =
  42. (((h - 1) * y_step_q4 + y0_q4) >> SUBPEL_BITS) + SUBPEL_TAPS;
  43. /* This implementation has the same issues as above. In addition, we only want
  44. * to average the values after both passes.
  45. */
  46. vpx_highbd_convolve8_horiz_neon(src - src_stride * 3, src_stride, temp, w,
  47. filter, x0_q4, x_step_q4, y0_q4, y_step_q4, w,
  48. intermediate_height, bd);
  49. vpx_highbd_convolve8_avg_vert_neon(temp + w * 3, w, dst, dst_stride, filter,
  50. x0_q4, x_step_q4, y0_q4, y_step_q4, w, h,
  51. bd);
  52. }