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.

101 lines
3.9KB

  1. /*
  2. * Format Conversion Utils
  3. * Copyright (c) 2000, 2001 Fabrice Bellard
  4. * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_FMTCONVERT_H
  23. #define AVCODEC_FMTCONVERT_H
  24. #include "avcodec.h"
  25. typedef struct FmtConvertContext {
  26. /**
  27. * Convert an array of int32_t to float and multiply by a float value.
  28. * @param dst destination array of float.
  29. * constraints: 16-byte aligned
  30. * @param src source array of int32_t.
  31. * constraints: 16-byte aligned
  32. * @param len number of elements to convert.
  33. * constraints: multiple of 8
  34. */
  35. void (*int32_to_float_fmul_scalar)(float *dst, const int *src, float mul, int len);
  36. /**
  37. * Convert an array of float to an array of int16_t.
  38. *
  39. * Convert floats from in the range [-32768.0,32767.0] to ints
  40. * without rescaling
  41. *
  42. * @param dst destination array of int16_t.
  43. * constraints: 16-byte aligned
  44. * @param src source array of float.
  45. * constraints: 16-byte aligned
  46. * @param len number of elements to convert.
  47. * constraints: multiple of 8
  48. */
  49. void (*float_to_int16)(int16_t *dst, const float *src, long len);
  50. /**
  51. * Convert multiple arrays of float to an interleaved array of int16_t.
  52. *
  53. * Convert floats from in the range [-32768.0,32767.0] to ints
  54. * without rescaling
  55. *
  56. * @param dst destination array of interleaved int16_t.
  57. * constraints: 16-byte aligned
  58. * @param src source array of float arrays, one for each channel.
  59. * constraints: 16-byte aligned
  60. * @param len number of elements to convert.
  61. * constraints: multiple of 8
  62. * @param channels number of channels
  63. */
  64. void (*float_to_int16_interleave)(int16_t *dst, const float **src,
  65. long len, int channels);
  66. /**
  67. * Convert multiple arrays of float to an array of interleaved float.
  68. *
  69. * @param dst destination array of interleaved float.
  70. * constraints: 16-byte aligned
  71. * @param src source array of float arrays, one for each channel.
  72. * constraints: 16-byte aligned
  73. * @param len number of elements to convert.
  74. * constraints: multiple of 8
  75. * @param channels number of channels
  76. */
  77. void (*float_interleave)(float *dst, const float **src, unsigned int len,
  78. int channels);
  79. } FmtConvertContext;
  80. void ff_float_interleave_c(float *dst, const float **src, unsigned int len,
  81. int channels);
  82. av_cold void ff_fmt_convert_init(FmtConvertContext *c, AVCodecContext *avctx);
  83. void ff_fmt_convert_init_arm(FmtConvertContext *c, AVCodecContext *avctx);
  84. void ff_fmt_convert_init_altivec(FmtConvertContext *c, AVCodecContext *avctx);
  85. void ff_fmt_convert_init_x86(FmtConvertContext *c, AVCodecContext *avctx);
  86. /* ffdshow custom code */
  87. void float_interleave(float *dst, const float **src, long len, int channels);
  88. void float_interleave_noscale(float *dst, const float **src, long len, int channels);
  89. #endif /* AVCODEC_FMTCONVERT_H */