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.

71 lines
2.5KB

  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 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_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/audioconvert.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. */
  43. AVAudioConvert *av_audio_convert_alloc(enum AVSampleFormat out_fmt, int out_channels,
  44. enum AVSampleFormat in_fmt, int in_channels,
  45. const float *matrix, int flags);
  46. /**
  47. * Free audio sample format converter context
  48. */
  49. void av_audio_convert_free(AVAudioConvert *ctx);
  50. /**
  51. * Convert between audio sample formats
  52. * @param[in] out array of output buffers for each channel. set to NULL to ignore processing of the given channel.
  53. * @param[in] out_stride distance between consecutive output samples (measured in bytes)
  54. * @param[in] in array of input buffers for each channel
  55. * @param[in] in_stride distance between consecutive input samples (measured in bytes)
  56. * @param len length of audio frame size (measured in samples)
  57. */
  58. int av_audio_convert(AVAudioConvert *ctx,
  59. void * const out[6], const int out_stride[6],
  60. const void * const in[6], const int in_stride[6], int len);
  61. #endif /* AVCODEC_AUDIOCONVERT_H */