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.

80 lines
2.7KB

  1. /*
  2. * audio conversion
  3. * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  4. * Copyright (c) 2008 Peter Ross
  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_AUDIOCONVERT_H
  23. #define AVCODEC_AUDIOCONVERT_H
  24. /**
  25. * @file
  26. * Audio format conversion routines
  27. */
  28. #include "libavutil/cpu.h"
  29. #include "avcodec.h"
  30. #include "libavutil/channel_layout.h"
  31. struct AVAudioConvert;
  32. typedef struct AVAudioConvert AVAudioConvert;
  33. /**
  34. * Create an audio sample format converter context
  35. * @param out_fmt Output sample format
  36. * @param out_channels Number of output channels
  37. * @param in_fmt Input sample format
  38. * @param in_channels Number of input channels
  39. * @param[in] matrix Channel mixing matrix (of dimension in_channel*out_channels). Set to NULL to ignore.
  40. * @param flags See AV_CPU_FLAG_xx
  41. * @return NULL on error
  42. * @deprecated See libswresample
  43. */
  44. attribute_deprecated
  45. AVAudioConvert *av_audio_convert_alloc(enum AVSampleFormat out_fmt, int out_channels,
  46. enum AVSampleFormat in_fmt, int in_channels,
  47. const float *matrix, int flags);
  48. /**
  49. * Free audio sample format converter context
  50. * @deprecated See libswresample
  51. */
  52. attribute_deprecated
  53. void av_audio_convert_free(AVAudioConvert *ctx);
  54. /**
  55. * Convert between audio sample formats
  56. * @param[in] out array of output buffers for each channel. set to NULL to ignore processing of the given channel.
  57. * @param[in] out_stride distance between consecutive output samples (measured in bytes)
  58. * @param[in] in array of input buffers for each channel
  59. * @param[in] in_stride distance between consecutive input samples (measured in bytes)
  60. * @param len length of audio frame size (measured in samples)
  61. * @deprecated See libswresample
  62. */
  63. attribute_deprecated
  64. int av_audio_convert(AVAudioConvert *ctx,
  65. void * const out[6], const int out_stride[6],
  66. const void * const in[6], const int in_stride[6], int len);
  67. #endif /* AVCODEC_AUDIOCONVERT_H */