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.

65 lines
2.6KB

  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. typedef struct MPADSPContext {
  22. void (*apply_window_float)(float *synth_buf, float *window,
  23. int *dither_state, float *samples, int incr);
  24. void (*apply_window_fixed)(int32_t *synth_buf, int32_t *window,
  25. int *dither_state, int16_t *samples, int incr);
  26. void (*dct32_float)(float *dst, const float *src);
  27. void (*dct32_fixed)(int *dst, const int *src);
  28. } MPADSPContext;
  29. void ff_mpadsp_init(MPADSPContext *s);
  30. extern int32_t ff_mpa_synth_window_fixed[];
  31. extern float ff_mpa_synth_window_float[];
  32. void ff_mpa_synth_filter_fixed(MPADSPContext *s,
  33. int32_t *synth_buf_ptr, int *synth_buf_offset,
  34. int32_t *window, int *dither_state,
  35. int16_t *samples, int incr,
  36. int32_t *sb_samples);
  37. void ff_mpa_synth_filter_float(MPADSPContext *s,
  38. float *synth_buf_ptr, int *synth_buf_offset,
  39. float *window, int *dither_state,
  40. float *samples, int incr,
  41. float *sb_samples);
  42. void ff_mpadsp_init_arm(MPADSPContext *s);
  43. void ff_mpadsp_init_mmx(MPADSPContext *s);
  44. void ff_mpadsp_init_altivec(MPADSPContext *s);
  45. void ff_mpa_synth_init_float(float *window);
  46. void ff_mpa_synth_init_fixed(int32_t *window);
  47. void ff_mpadsp_apply_window_float(float *synth_buf, float *window,
  48. int *dither_state, float *samples,
  49. int incr);
  50. void ff_mpadsp_apply_window_fixed(int32_t *synth_buf, int32_t *window,
  51. int *dither_state, int16_t *samples,
  52. int incr);
  53. #endif /* AVCODEC_MPEGAUDIODSP_H */