You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
3.4KB

  1. /*
  2. * ARM NEON optimised DSP functions
  3. * Copyright (c) 2008 Mans Rullgard <mans@mansr.com>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <stdint.h>
  22. #include "libavcodec/avcodec.h"
  23. #include "libavcodec/dsputil.h"
  24. void ff_put_pixels16_neon(uint8_t *, const uint8_t *, int, int);
  25. void ff_put_pixels16_x2_neon(uint8_t *, const uint8_t *, int, int);
  26. void ff_put_pixels16_y2_neon(uint8_t *, const uint8_t *, int, int);
  27. void ff_put_pixels16_xy2_neon(uint8_t *, const uint8_t *, int, int);
  28. void ff_put_pixels8_neon(uint8_t *, const uint8_t *, int, int);
  29. void ff_put_pixels8_x2_neon(uint8_t *, const uint8_t *, int, int);
  30. void ff_put_pixels8_y2_neon(uint8_t *, const uint8_t *, int, int);
  31. void ff_put_pixels8_xy2_neon(uint8_t *, const uint8_t *, int, int);
  32. void ff_put_pixels16_x2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
  33. void ff_put_pixels16_y2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
  34. void ff_put_pixels16_xy2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
  35. void ff_put_pixels8_x2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
  36. void ff_put_pixels8_y2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
  37. void ff_put_pixels8_xy2_no_rnd_neon(uint8_t *, const uint8_t *, int, int);
  38. void ff_avg_pixels16_neon(uint8_t *, const uint8_t *, int, int);
  39. void ff_put_h264_qpel16_mc00_neon(uint8_t *, uint8_t *, int);
  40. void ff_put_h264_qpel8_mc00_neon(uint8_t *, uint8_t *, int);
  41. void ff_avg_h264_qpel16_mc00_neon(uint8_t *, uint8_t *, int);
  42. void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
  43. {
  44. c->put_pixels_tab[0][0] = ff_put_pixels16_neon;
  45. c->put_pixels_tab[0][1] = ff_put_pixels16_x2_neon;
  46. c->put_pixels_tab[0][2] = ff_put_pixels16_y2_neon;
  47. c->put_pixels_tab[0][3] = ff_put_pixels16_xy2_neon;
  48. c->put_pixels_tab[1][0] = ff_put_pixels8_neon;
  49. c->put_pixels_tab[1][1] = ff_put_pixels8_x2_neon;
  50. c->put_pixels_tab[1][2] = ff_put_pixels8_y2_neon;
  51. c->put_pixels_tab[1][3] = ff_put_pixels8_xy2_neon;
  52. c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_neon;
  53. c->put_no_rnd_pixels_tab[0][1] = ff_put_pixels16_x2_no_rnd_neon;
  54. c->put_no_rnd_pixels_tab[0][2] = ff_put_pixels16_y2_no_rnd_neon;
  55. c->put_no_rnd_pixels_tab[0][3] = ff_put_pixels16_xy2_no_rnd_neon;
  56. c->put_no_rnd_pixels_tab[1][0] = ff_put_pixels8_neon;
  57. c->put_no_rnd_pixels_tab[1][1] = ff_put_pixels8_x2_no_rnd_neon;
  58. c->put_no_rnd_pixels_tab[1][2] = ff_put_pixels8_y2_no_rnd_neon;
  59. c->put_no_rnd_pixels_tab[1][3] = ff_put_pixels8_xy2_no_rnd_neon;
  60. c->avg_pixels_tab[0][0] = ff_avg_pixels16_neon;
  61. c->put_h264_qpel_pixels_tab[0][0] = ff_put_h264_qpel16_mc00_neon;
  62. c->put_h264_qpel_pixels_tab[1][0] = ff_put_h264_qpel8_mc00_neon;
  63. c->avg_h264_qpel_pixels_tab[0][ 0] = ff_avg_h264_qpel16_mc00_neon;
  64. }