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.

88 lines
3.5KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav 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. * Libav 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 Libav; 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 <stdint.h>
  21. #include "libavutil/common.h"
  22. typedef struct MPADSPContext {
  23. void (*apply_window_float)(float *synth_buf, float *window,
  24. int *dither_state, float *samples, int incr);
  25. void (*apply_window_fixed)(int32_t *synth_buf, int32_t *window,
  26. int *dither_state, int16_t *samples, int incr);
  27. void (*dct32_float)(float *dst, const float *src);
  28. void (*dct32_fixed)(int *dst, const int *src);
  29. void (*imdct36_blocks_float)(float *out, float *buf, float *in,
  30. int count, int switch_point, int block_type);
  31. void (*imdct36_blocks_fixed)(int *out, int *buf, int *in,
  32. int count, int switch_point, int block_type);
  33. } MPADSPContext;
  34. void ff_mpadsp_init(MPADSPContext *s);
  35. extern int32_t ff_mpa_synth_window_fixed[];
  36. extern float ff_mpa_synth_window_float[];
  37. void ff_mpa_synth_filter_fixed(MPADSPContext *s,
  38. int32_t *synth_buf_ptr, int *synth_buf_offset,
  39. int32_t *window, int *dither_state,
  40. int16_t *samples, int incr,
  41. int32_t *sb_samples);
  42. void ff_mpa_synth_filter_float(MPADSPContext *s,
  43. float *synth_buf_ptr, int *synth_buf_offset,
  44. float *window, int *dither_state,
  45. float *samples, int incr,
  46. float *sb_samples);
  47. void ff_mpadsp_init_arm(MPADSPContext *s);
  48. void ff_mpadsp_init_mmx(MPADSPContext *s);
  49. void ff_mpadsp_init_altivec(MPADSPContext *s);
  50. void ff_mpadsp_init_mipsfpu(MPADSPContext *s);
  51. void ff_mpadsp_init_mipsdspr1(MPADSPContext *s);
  52. void ff_mpa_synth_init_float(float *window);
  53. void ff_mpa_synth_init_fixed(int32_t *window);
  54. void ff_mpadsp_apply_window_float(float *synth_buf, float *window,
  55. int *dither_state, float *samples,
  56. int incr);
  57. void ff_mpadsp_apply_window_fixed(int32_t *synth_buf, int32_t *window,
  58. int *dither_state, int16_t *samples,
  59. int incr);
  60. void ff_imdct36_blocks_float(float *out, float *buf, float *in,
  61. int count, int switch_point, int block_type);
  62. void ff_imdct36_blocks_fixed(int *out, int *buf, int *in,
  63. int count, int switch_point, int block_type);
  64. void ff_init_mpadsp_tabs_float(void);
  65. void ff_init_mpadsp_tabs_fixed(void);
  66. /** For SSE implementation, MDCT_BUF_SIZE/2 should be 128-bit aligned */
  67. #define MDCT_BUF_SIZE FFALIGN(36, 2*4)
  68. extern int ff_mdct_win_fixed[8][MDCT_BUF_SIZE];
  69. extern float ff_mdct_win_float[8][MDCT_BUF_SIZE];
  70. #endif /* AVCODEC_MPEGAUDIODSP_H */