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.

86 lines
3.5KB

  1. /*
  2. * ARM NEON optimised HEVC IDCT
  3. * Copyright (c) 2017 Alexandra Hájková
  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 "libavutil/attributes.h"
  22. #include "libavutil/cpu.h"
  23. #include "libavutil/arm/cpu.h"
  24. #include "libavcodec/hevcdsp.h"
  25. void ff_hevc_add_residual_4x4_8_neon(uint8_t *_dst, int16_t *coeffs,
  26. ptrdiff_t stride);
  27. void ff_hevc_add_residual_8x8_8_neon(uint8_t *_dst, int16_t *coeffs,
  28. ptrdiff_t stride);
  29. void ff_hevc_add_residual_16x16_8_neon(uint8_t *_dst, int16_t *coeffs,
  30. ptrdiff_t stride);
  31. void ff_hevc_add_residual_32x32_8_neon(uint8_t *_dst, int16_t *coeffs,
  32. ptrdiff_t stride);
  33. void ff_hevc_idct_4x4_dc_8_neon(int16_t *coeffs);
  34. void ff_hevc_idct_8x8_dc_8_neon(int16_t *coeffs);
  35. void ff_hevc_idct_16x16_dc_8_neon(int16_t *coeffs);
  36. void ff_hevc_idct_32x32_dc_8_neon(int16_t *coeffs);
  37. void ff_hevc_idct_4x4_dc_10_neon(int16_t *coeffs);
  38. void ff_hevc_idct_8x8_dc_10_neon(int16_t *coeffs);
  39. void ff_hevc_idct_16x16_dc_10_neon(int16_t *coeffs);
  40. void ff_hevc_idct_32x32_dc_10_neon(int16_t *coeffs);
  41. void ff_hevc_idct_4x4_8_neon(int16_t *coeffs, int col_limit);
  42. void ff_hevc_idct_8x8_8_neon(int16_t *coeffs, int col_limit);
  43. void ff_hevc_idct_16x16_8_neon(int16_t *coeffs, int col_limit);
  44. void ff_hevc_idct_4x4_10_neon(int16_t *coeffs, int col_limit);
  45. void ff_hevc_idct_8x8_10_neon(int16_t *coeffs, int col_limit);
  46. void ff_hevc_idct_16x16_10_neon(int16_t *coeffs, int col_limit);
  47. av_cold void ff_hevc_dsp_init_arm(HEVCDSPContext *c, int bit_depth)
  48. {
  49. int cpu_flags = av_get_cpu_flags();
  50. if (have_neon(cpu_flags)) {
  51. if (bit_depth == 8) {
  52. c->add_residual[0] = ff_hevc_add_residual_4x4_8_neon;
  53. c->add_residual[1] = ff_hevc_add_residual_8x8_8_neon;
  54. c->add_residual[2] = ff_hevc_add_residual_16x16_8_neon;
  55. c->add_residual[3] = ff_hevc_add_residual_32x32_8_neon;
  56. c->idct_dc[0] = ff_hevc_idct_4x4_dc_8_neon;
  57. c->idct_dc[1] = ff_hevc_idct_8x8_dc_8_neon;
  58. c->idct_dc[2] = ff_hevc_idct_16x16_dc_8_neon;
  59. c->idct_dc[3] = ff_hevc_idct_32x32_dc_8_neon;
  60. c->idct[0] = ff_hevc_idct_4x4_8_neon;
  61. c->idct[1] = ff_hevc_idct_8x8_8_neon;
  62. c->idct[2] = ff_hevc_idct_16x16_8_neon;
  63. }
  64. if (bit_depth == 10) {
  65. c->idct_dc[0] = ff_hevc_idct_4x4_dc_10_neon;
  66. c->idct_dc[1] = ff_hevc_idct_8x8_dc_10_neon;
  67. c->idct_dc[2] = ff_hevc_idct_16x16_dc_10_neon;
  68. c->idct_dc[3] = ff_hevc_idct_32x32_dc_10_neon;
  69. c->idct[0] = ff_hevc_idct_4x4_10_neon;
  70. c->idct[1] = ff_hevc_idct_8x8_10_neon;
  71. c->idct[2] = ff_hevc_idct_16x16_10_neon;
  72. }
  73. }
  74. }