mpegaudiodsp.h 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVCODEC_MPEGAUDIODSP_H
  19. #define AVCODEC_MPEGAUDIODSP_H
  20. #include <stddef.h>
  21. #include <stdint.h>
  22. #include "libavutil/common.h"
  23. typedef struct MPADSPContext {
  24. void (*apply_window_float)(float *synth_buf, float *window,
  25. int *dither_state, float *samples,
  26. ptrdiff_t incr);
  27. void (*apply_window_fixed)(int32_t *synth_buf, int32_t *window,
  28. int *dither_state, int16_t *samples,
  29. ptrdiff_t incr);
  30. void (*dct32_float)(float *dst, const float *src);
  31. void (*dct32_fixed)(int *dst, const int *src);
  32. void (*imdct36_blocks_float)(float *out, float *buf, float *in,
  33. int count, int switch_point, int block_type);
  34. void (*imdct36_blocks_fixed)(int *out, int *buf, int *in,
  35. int count, int switch_point, int block_type);
  36. } MPADSPContext;
  37. void ff_mpadsp_init(MPADSPContext *s);
  38. extern int32_t ff_mpa_synth_window_fixed[];
  39. extern float ff_mpa_synth_window_float[];
  40. extern const int32_t ff_mpa_enwindow[257];
  41. void ff_mpa_synth_filter_fixed(MPADSPContext *s,
  42. int32_t *synth_buf_ptr, int *synth_buf_offset,
  43. int32_t *window, int *dither_state,
  44. int16_t *samples, ptrdiff_t incr,
  45. int32_t *sb_samples);
  46. void ff_mpa_synth_filter_float(MPADSPContext *s,
  47. float *synth_buf_ptr, int *synth_buf_offset,
  48. float *window, int *dither_state,
  49. float *samples, ptrdiff_t incr,
  50. float *sb_samples);
  51. void ff_mpadsp_init_aarch64(MPADSPContext *s);
  52. void ff_mpadsp_init_arm(MPADSPContext *s);
  53. void ff_mpadsp_init_ppc(MPADSPContext *s);
  54. void ff_mpadsp_init_x86(MPADSPContext *s);
  55. void ff_mpadsp_init_mipsfpu(MPADSPContext *s);
  56. void ff_mpadsp_init_mipsdsp(MPADSPContext *s);
  57. void ff_mpa_synth_init_float(float *window);
  58. void ff_mpa_synth_init_fixed(int32_t *window);
  59. void ff_mpadsp_apply_window_float(float *synth_buf, float *window,
  60. int *dither_state, float *samples,
  61. ptrdiff_t incr);
  62. void ff_mpadsp_apply_window_fixed(int32_t *synth_buf, int32_t *window,
  63. int *dither_state, int16_t *samples,
  64. ptrdiff_t incr);
  65. void ff_imdct36_blocks_float(float *out, float *buf, float *in,
  66. int count, int switch_point, int block_type);
  67. void ff_imdct36_blocks_fixed(int *out, int *buf, int *in,
  68. int count, int switch_point, int block_type);
  69. void ff_init_mpadsp_tabs_float(void);
  70. void ff_init_mpadsp_tabs_fixed(void);
  71. /** For SSE implementation, MDCT_BUF_SIZE/2 should be 128-bit aligned */
  72. #define MDCT_BUF_SIZE FFALIGN(36, 2*4)
  73. extern int ff_mdct_win_fixed[8][MDCT_BUF_SIZE];
  74. extern float ff_mdct_win_float[8][MDCT_BUF_SIZE];
  75. #endif /* AVCODEC_MPEGAUDIODSP_H */