sbrdsp.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright (c) 2012 Mans Rullgard
  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_SBRDSP_H
  21. #define AVCODEC_SBRDSP_H
  22. #include <stdint.h>
  23. #include "aac_defines.h"
  24. #include "libavutil/softfloat.h"
  25. typedef struct SBRDSPContext {
  26. void (*sum64x5)(INTFLOAT *z);
  27. AAC_FLOAT (*sum_square)(INTFLOAT (*x)[2], int n);
  28. void (*neg_odd_64)(INTFLOAT *x);
  29. void (*qmf_pre_shuffle)(INTFLOAT *z);
  30. void (*qmf_post_shuffle)(INTFLOAT W[32][2], const INTFLOAT *z);
  31. void (*qmf_deint_neg)(INTFLOAT *v, const INTFLOAT *src);
  32. void (*qmf_deint_bfly)(INTFLOAT *v, const INTFLOAT *src0, const INTFLOAT *src1);
  33. void (*autocorrelate)(const INTFLOAT x[40][2], AAC_FLOAT phi[3][2][2]);
  34. void (*hf_gen)(INTFLOAT (*X_high)[2], const INTFLOAT (*X_low)[2],
  35. const INTFLOAT alpha0[2], const INTFLOAT alpha1[2],
  36. INTFLOAT bw, int start, int end);
  37. void (*hf_g_filt)(INTFLOAT (*Y)[2], const INTFLOAT (*X_high)[40][2],
  38. const AAC_FLOAT *g_filt, int m_max, intptr_t ixh);
  39. void (*hf_apply_noise[4])(INTFLOAT (*Y)[2], const AAC_FLOAT *s_m,
  40. const AAC_FLOAT *q_filt, int noise,
  41. int kx, int m_max);
  42. } SBRDSPContext;
  43. extern const INTFLOAT AAC_RENAME(ff_sbr_noise_table)[][2];
  44. void AAC_RENAME(ff_sbrdsp_init)(SBRDSPContext *s);
  45. void ff_sbrdsp_init_arm(SBRDSPContext *s);
  46. void ff_sbrdsp_init_aarch64(SBRDSPContext *s);
  47. void ff_sbrdsp_init_x86(SBRDSPContext *s);
  48. void ff_sbrdsp_init_mips(SBRDSPContext *s);
  49. #endif /* AVCODEC_SBRDSP_H */