audiodsp.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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_AUDIODSP_H
  19. #define AVCODEC_AUDIODSP_H
  20. #include <stdint.h>
  21. typedef struct AudioDSPContext {
  22. /**
  23. * Calculate scalar product of two vectors.
  24. * @param len length of vectors, should be multiple of 16
  25. */
  26. int32_t (*scalarproduct_int16)(const int16_t *v1,
  27. const int16_t *v2 /* align 16 */, int len);
  28. /**
  29. * Clip each element in an array of int32_t to a given minimum and
  30. * maximum value.
  31. * @param dst destination array
  32. * constraints: 16-byte aligned
  33. * @param src source array
  34. * constraints: 16-byte aligned
  35. * @param min minimum value
  36. * constraints: must be in the range [-(1 << 24), 1 << 24]
  37. * @param max maximum value
  38. * constraints: must be in the range [-(1 << 24), 1 << 24]
  39. * @param len number of elements in the array
  40. * constraints: multiple of 32 greater than zero
  41. */
  42. void (*vector_clip_int32)(int32_t *dst, const int32_t *src, int32_t min,
  43. int32_t max, unsigned int len);
  44. /* assume len is a multiple of 16, and arrays are 16-byte aligned */
  45. void (*vector_clipf)(float *dst /* align 16 */,
  46. const float *src /* align 16 */,
  47. int len /* align 16 */,
  48. float min, float max);
  49. } AudioDSPContext;
  50. void ff_audiodsp_init(AudioDSPContext *c);
  51. void ff_audiodsp_init_arm(AudioDSPContext *c);
  52. void ff_audiodsp_init_ppc(AudioDSPContext *c);
  53. void ff_audiodsp_init_x86(AudioDSPContext *c);
  54. #endif /* AVCODEC_AUDIODSP_H */