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.

142 lines
6.8KB

  1. /*
  2. * ARM NEON optimised DSP functions
  3. * Copyright (c) 2008 Mans Rullgard <mans@mansr.com>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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 "libavutil/attributes.h"
  23. #include "libavcodec/avcodec.h"
  24. #include "libavcodec/dsputil.h"
  25. #include "dsputil_arm.h"
  26. void ff_simple_idct_neon(int16_t *data);
  27. void ff_simple_idct_put_neon(uint8_t *dest, int line_size, int16_t *data);
  28. void ff_simple_idct_add_neon(uint8_t *dest, int line_size, int16_t *data);
  29. void ff_clear_block_neon(int16_t *block);
  30. void ff_clear_blocks_neon(int16_t *blocks);
  31. void ff_put_pixels16_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  32. void ff_put_pixels16_x2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  33. void ff_put_pixels16_y2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  34. void ff_put_pixels16_xy2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  35. void ff_put_pixels8_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  36. void ff_put_pixels8_x2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  37. void ff_put_pixels8_y2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  38. void ff_put_pixels8_xy2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  39. void ff_put_pixels16_x2_no_rnd_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  40. void ff_put_pixels16_y2_no_rnd_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  41. void ff_put_pixels16_xy2_no_rnd_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  42. void ff_put_pixels8_x2_no_rnd_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  43. void ff_put_pixels8_y2_no_rnd_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  44. void ff_put_pixels8_xy2_no_rnd_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  45. void ff_avg_pixels16_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  46. void ff_avg_pixels16_x2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  47. void ff_avg_pixels16_y2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  48. void ff_avg_pixels16_xy2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  49. void ff_avg_pixels8_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  50. void ff_avg_pixels8_x2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  51. void ff_avg_pixels8_y2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  52. void ff_avg_pixels8_xy2_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  53. void ff_avg_pixels16_x2_no_rnd_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  54. void ff_avg_pixels16_y2_no_rnd_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  55. void ff_avg_pixels16_xy2_no_rnd_neon(uint8_t *, const uint8_t *, ptrdiff_t, int);
  56. void ff_add_pixels_clamped_neon(const int16_t *, uint8_t *, int);
  57. void ff_put_pixels_clamped_neon(const int16_t *, uint8_t *, int);
  58. void ff_put_signed_pixels_clamped_neon(const int16_t *, uint8_t *, int);
  59. void ff_vector_clipf_neon(float *dst, const float *src, float min, float max,
  60. int len);
  61. void ff_vector_clip_int32_neon(int32_t *dst, const int32_t *src, int32_t min,
  62. int32_t max, unsigned int len);
  63. int32_t ff_scalarproduct_int16_neon(const int16_t *v1, const int16_t *v2, int len);
  64. int32_t ff_scalarproduct_and_madd_int16_neon(int16_t *v1, const int16_t *v2,
  65. const int16_t *v3, int len, int mul);
  66. void ff_apply_window_int16_neon(int16_t *dst, const int16_t *src,
  67. const int16_t *window, unsigned n);
  68. av_cold void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
  69. {
  70. const int high_bit_depth = avctx->bits_per_raw_sample > 8;
  71. if (avctx->bits_per_raw_sample <= 8) {
  72. if (avctx->idct_algo == FF_IDCT_AUTO ||
  73. avctx->idct_algo == FF_IDCT_SIMPLENEON) {
  74. c->idct_put = ff_simple_idct_put_neon;
  75. c->idct_add = ff_simple_idct_add_neon;
  76. c->idct = ff_simple_idct_neon;
  77. c->idct_permutation_type = FF_PARTTRANS_IDCT_PERM;
  78. }
  79. }
  80. if (!high_bit_depth) {
  81. c->clear_block = ff_clear_block_neon;
  82. c->clear_blocks = ff_clear_blocks_neon;
  83. c->put_pixels_tab[0][0] = ff_put_pixels16_neon;
  84. c->put_pixels_tab[0][1] = ff_put_pixels16_x2_neon;
  85. c->put_pixels_tab[0][2] = ff_put_pixels16_y2_neon;
  86. c->put_pixels_tab[0][3] = ff_put_pixels16_xy2_neon;
  87. c->put_pixels_tab[1][0] = ff_put_pixels8_neon;
  88. c->put_pixels_tab[1][1] = ff_put_pixels8_x2_neon;
  89. c->put_pixels_tab[1][2] = ff_put_pixels8_y2_neon;
  90. c->put_pixels_tab[1][3] = ff_put_pixels8_xy2_neon;
  91. c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_neon;
  92. c->put_no_rnd_pixels_tab[0][1] = ff_put_pixels16_x2_no_rnd_neon;
  93. c->put_no_rnd_pixels_tab[0][2] = ff_put_pixels16_y2_no_rnd_neon;
  94. c->put_no_rnd_pixels_tab[0][3] = ff_put_pixels16_xy2_no_rnd_neon;
  95. c->put_no_rnd_pixels_tab[1][0] = ff_put_pixels8_neon;
  96. c->put_no_rnd_pixels_tab[1][1] = ff_put_pixels8_x2_no_rnd_neon;
  97. c->put_no_rnd_pixels_tab[1][2] = ff_put_pixels8_y2_no_rnd_neon;
  98. c->put_no_rnd_pixels_tab[1][3] = ff_put_pixels8_xy2_no_rnd_neon;
  99. c->avg_pixels_tab[0][0] = ff_avg_pixels16_neon;
  100. c->avg_pixels_tab[0][1] = ff_avg_pixels16_x2_neon;
  101. c->avg_pixels_tab[0][2] = ff_avg_pixels16_y2_neon;
  102. c->avg_pixels_tab[0][3] = ff_avg_pixels16_xy2_neon;
  103. c->avg_pixels_tab[1][0] = ff_avg_pixels8_neon;
  104. c->avg_pixels_tab[1][1] = ff_avg_pixels8_x2_neon;
  105. c->avg_pixels_tab[1][2] = ff_avg_pixels8_y2_neon;
  106. c->avg_pixels_tab[1][3] = ff_avg_pixels8_xy2_neon;
  107. c->avg_no_rnd_pixels_tab[0] = ff_avg_pixels16_neon;
  108. c->avg_no_rnd_pixels_tab[1] = ff_avg_pixels16_x2_no_rnd_neon;
  109. c->avg_no_rnd_pixels_tab[2] = ff_avg_pixels16_y2_no_rnd_neon;
  110. c->avg_no_rnd_pixels_tab[3] = ff_avg_pixels16_xy2_no_rnd_neon;
  111. }
  112. c->add_pixels_clamped = ff_add_pixels_clamped_neon;
  113. c->put_pixels_clamped = ff_put_pixels_clamped_neon;
  114. c->put_signed_pixels_clamped = ff_put_signed_pixels_clamped_neon;
  115. c->vector_clipf = ff_vector_clipf_neon;
  116. c->vector_clip_int32 = ff_vector_clip_int32_neon;
  117. c->scalarproduct_int16 = ff_scalarproduct_int16_neon;
  118. c->scalarproduct_and_madd_int16 = ff_scalarproduct_and_madd_int16_neon;
  119. c->apply_window_int16 = ff_apply_window_int16_neon;
  120. }