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.

114 lines
4.4KB

  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 Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; 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 int32_t *src,
  36. float mul, int len);
  37. /**
  38. * Convert an array of int32_t to float and multiply by a float value from another array,
  39. * stepping along the float array once for each 8 integers.
  40. * @param c pointer to FmtConvertContext.
  41. * @param dst destination array of float.
  42. * constraints: 16-byte aligned
  43. * @param src source array of int32_t.
  44. * constraints: 16-byte aligned
  45. * @param mul source array of float multipliers.
  46. * @param len number of elements to convert.
  47. * constraints: multiple of 8
  48. */
  49. void (*int32_to_float_fmul_array8)(struct FmtConvertContext *c,
  50. float *dst, const int32_t *src,
  51. const float *mul, int len);
  52. /**
  53. * Convert an array of float to an array of int16_t.
  54. *
  55. * Convert floats from in the range [-32768.0,32767.0] to ints
  56. * without rescaling
  57. *
  58. * @param dst destination array of int16_t.
  59. * constraints: 16-byte aligned
  60. * @param src source array of float.
  61. * constraints: 16-byte aligned
  62. * @param len number of elements to convert.
  63. * constraints: multiple of 8
  64. */
  65. void (*float_to_int16)(int16_t *dst, const float *src, long len);
  66. /**
  67. * Convert multiple arrays of float to an interleaved array of int16_t.
  68. *
  69. * Convert floats from in the range [-32768.0,32767.0] to ints
  70. * without rescaling
  71. *
  72. * @param dst destination array of interleaved int16_t.
  73. * constraints: 16-byte aligned
  74. * @param src source array of float arrays, one for each channel.
  75. * constraints: 16-byte aligned
  76. * @param len number of elements to convert.
  77. * constraints: multiple of 8
  78. * @param channels number of channels
  79. */
  80. void (*float_to_int16_interleave)(int16_t *dst, const float **src,
  81. long len, int channels);
  82. /**
  83. * Convert multiple arrays of float to an array of interleaved float.
  84. *
  85. * @param dst destination array of interleaved float.
  86. * constraints: 16-byte aligned
  87. * @param src source array of float arrays, one for each channel.
  88. * constraints: 16-byte aligned
  89. * @param len number of elements to convert.
  90. * constraints: multiple of 8
  91. * @param channels number of channels
  92. */
  93. void (*float_interleave)(float *dst, const float **src, unsigned int len,
  94. int channels);
  95. } FmtConvertContext;
  96. void ff_float_interleave_c(float *dst, const float **src, unsigned int len,
  97. int channels);
  98. void ff_fmt_convert_init(FmtConvertContext *c, AVCodecContext *avctx);
  99. void ff_fmt_convert_init_arm(FmtConvertContext *c, AVCodecContext *avctx);
  100. void ff_fmt_convert_init_ppc(FmtConvertContext *c, AVCodecContext *avctx);
  101. void ff_fmt_convert_init_x86(FmtConvertContext *c, AVCodecContext *avctx);
  102. #endif /* AVCODEC_FMTCONVERT_H */