mdct15.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright (c) 2017 Rostislav Pehlivanov <atomnuker@gmail.com>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVCODEC_MDCT15_H
  21. #define AVCODEC_MDCT15_H
  22. #include <stddef.h>
  23. #include "fft.h"
  24. typedef struct MDCT15Context {
  25. int fft_n;
  26. int len2;
  27. int len4;
  28. int inverse;
  29. int *pfa_prereindex;
  30. int *pfa_postreindex;
  31. FFTContext ptwo_fft;
  32. FFTComplex *tmp;
  33. FFTComplex *twiddle_exptab;
  34. DECLARE_ALIGNED(32, FFTComplex, exptab)[64];
  35. /* 15-point FFT */
  36. void (*fft15)(FFTComplex *out, FFTComplex *in, FFTComplex *exptab, ptrdiff_t stride);
  37. /* PFA postrotate and exptab */
  38. void (*postreindex)(FFTComplex *out, FFTComplex *in, FFTComplex *exp, int *lut, ptrdiff_t len8);
  39. /* Calculate a full 2N -> N MDCT */
  40. void (*mdct)(struct MDCT15Context *s, float *dst, const float *src, ptrdiff_t stride);
  41. /* Calculate the middle half of the iMDCT */
  42. void (*imdct_half)(struct MDCT15Context *s, float *dst, const float *src,
  43. ptrdiff_t stride);
  44. } MDCT15Context;
  45. /* Init an (i)MDCT of the length 2 * 15 * (2^N) */
  46. int ff_mdct15_init(MDCT15Context **ps, int inverse, int N, double scale);
  47. void ff_mdct15_uninit(MDCT15Context **ps);
  48. void ff_mdct15_init_x86(MDCT15Context *s);
  49. #endif /* AVCODEC_MDCT15_H */