vpx_convolve_neon.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright (c) 2013 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 <assert.h>
  11. #include "./vpx_dsp_rtcd.h"
  12. #include "vpx_dsp/vpx_dsp_common.h"
  13. #include "vpx_ports/mem.h"
  14. void vpx_convolve8_neon(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst,
  15. ptrdiff_t dst_stride, const InterpKernel *filter,
  16. int x0_q4, int x_step_q4, int y0_q4, int y_step_q4,
  17. int w, int h) {
  18. /* Given our constraints: w <= 64, h <= 64, taps == 8 we can reduce the
  19. * maximum buffer size to 64 * 64 + 7 (+ 1 to make it divisible by 4).
  20. */
  21. uint8_t temp[64 * 72];
  22. // Account for the vertical phase needing 3 lines prior and 4 lines post
  23. // (+ 1 to make it divisible by 4).
  24. const int intermediate_height = h + 8;
  25. assert(y_step_q4 == 16);
  26. assert(x_step_q4 == 16);
  27. /* Filter starting 3 lines back. The neon implementation will ignore the given
  28. * height and filter a multiple of 4 lines. Since this goes in to the temp
  29. * buffer which has lots of extra room and is subsequently discarded this is
  30. * safe if somewhat less than ideal. */
  31. vpx_convolve8_horiz_neon(src - src_stride * 3, src_stride, temp, w, filter,
  32. x0_q4, x_step_q4, y0_q4, y_step_q4, w,
  33. intermediate_height);
  34. /* Step into the temp buffer 3 lines to get the actual frame data */
  35. vpx_convolve8_vert_neon(temp + w * 3, w, dst, dst_stride, filter, x0_q4,
  36. x_step_q4, y0_q4, y_step_q4, w, h);
  37. }
  38. void vpx_convolve8_avg_neon(const uint8_t *src, ptrdiff_t src_stride,
  39. uint8_t *dst, ptrdiff_t dst_stride,
  40. const InterpKernel *filter, int x0_q4,
  41. int x_step_q4, int y0_q4, int y_step_q4, int w,
  42. int h) {
  43. uint8_t temp[64 * 72];
  44. const int intermediate_height = h + 8;
  45. assert(y_step_q4 == 16);
  46. assert(x_step_q4 == 16);
  47. /* This implementation has the same issues as above. In addition, we only want
  48. * to average the values after both passes.
  49. */
  50. vpx_convolve8_horiz_neon(src - src_stride * 3, src_stride, temp, w, filter,
  51. x0_q4, x_step_q4, y0_q4, y_step_q4, w,
  52. intermediate_height);
  53. vpx_convolve8_avg_vert_neon(temp + w * 3, w, dst, dst_stride, filter, x0_q4,
  54. x_step_q4, y0_q4, y_step_q4, w, h);
  55. }