2
0

mdct15_init.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * SIMD optimized non-power-of-two MDCT functions
  3. *
  4. * Copyright (C) 2017 Rostislav Pehlivanov <atomnuker@gmail.com>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "config.h"
  23. #include "libavutil/x86/cpu.h"
  24. #include "libavcodec/mdct15.h"
  25. void ff_mdct15_postreindex_sse3(FFTComplex *out, FFTComplex *in, FFTComplex *exp, int *lut, ptrdiff_t len8);
  26. void ff_mdct15_postreindex_avx2(FFTComplex *out, FFTComplex *in, FFTComplex *exp, int *lut, ptrdiff_t len8);
  27. void ff_fft15_avx(FFTComplex *out, FFTComplex *in, FFTComplex *exptab, ptrdiff_t stride);
  28. static void perm_twiddles(MDCT15Context *s)
  29. {
  30. int k;
  31. FFTComplex tmp[30];
  32. /* 5-point FFT twiddles */
  33. s->exptab[60].re = s->exptab[60].im = s->exptab[19].re;
  34. s->exptab[61].re = s->exptab[61].im = s->exptab[19].im;
  35. s->exptab[62].re = s->exptab[62].im = s->exptab[20].re;
  36. s->exptab[63].re = s->exptab[63].im = s->exptab[20].im;
  37. /* 15-point FFT twiddles */
  38. for (k = 0; k < 5; k++) {
  39. tmp[6*k + 0] = s->exptab[k + 0];
  40. tmp[6*k + 2] = s->exptab[k + 5];
  41. tmp[6*k + 4] = s->exptab[k + 10];
  42. tmp[6*k + 1] = s->exptab[2 * (k + 0)];
  43. tmp[6*k + 3] = s->exptab[2 * (k + 5)];
  44. tmp[6*k + 5] = s->exptab[2 * k + 5 ];
  45. }
  46. for (k = 0; k < 6; k++) {
  47. FFTComplex ac_exp[] = {
  48. { tmp[6*1 + k].re, tmp[6*1 + k].re },
  49. { tmp[6*2 + k].re, tmp[6*2 + k].re },
  50. { tmp[6*3 + k].re, tmp[6*3 + k].re },
  51. { tmp[6*4 + k].re, tmp[6*4 + k].re },
  52. { tmp[6*1 + k].im, -tmp[6*1 + k].im },
  53. { tmp[6*2 + k].im, -tmp[6*2 + k].im },
  54. { tmp[6*3 + k].im, -tmp[6*3 + k].im },
  55. { tmp[6*4 + k].im, -tmp[6*4 + k].im },
  56. };
  57. memcpy(s->exptab + 8*k, ac_exp, 8*sizeof(FFTComplex));
  58. }
  59. /* Specialcase when k = 0 */
  60. for (k = 0; k < 3; k++) {
  61. FFTComplex dc_exp[] = {
  62. { tmp[2*k + 0].re, -tmp[2*k + 0].im },
  63. { tmp[2*k + 0].im, tmp[2*k + 0].re },
  64. { tmp[2*k + 1].re, -tmp[2*k + 1].im },
  65. { tmp[2*k + 1].im, tmp[2*k + 1].re },
  66. };
  67. memcpy(s->exptab + 8*6 + 4*k, dc_exp, 4*sizeof(FFTComplex));
  68. }
  69. }
  70. av_cold void ff_mdct15_init_x86(MDCT15Context *s)
  71. {
  72. int adjust_twiddles = 0;
  73. int cpu_flags = av_get_cpu_flags();
  74. if (EXTERNAL_SSE3(cpu_flags))
  75. s->postreindex = ff_mdct15_postreindex_sse3;
  76. if (ARCH_X86_64 && EXTERNAL_AVX(cpu_flags)) {
  77. s->fft15 = ff_fft15_avx;
  78. adjust_twiddles = 1;
  79. }
  80. if (ARCH_X86_64 && EXTERNAL_AVX2_FAST(cpu_flags))
  81. s->postreindex = ff_mdct15_postreindex_avx2;
  82. if (adjust_twiddles)
  83. perm_twiddles(s);
  84. }