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.

119 lines
3.8KB

  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. #if FF_API_OLD_SAMPLE_FMT
  31. /**
  32. * @deprecated Use av_get_sample_fmt_string() instead.
  33. */
  34. attribute_deprecated
  35. void avcodec_sample_fmt_string(char *buf, int buf_size, int sample_fmt);
  36. /**
  37. * @deprecated Use av_get_sample_fmt_name() instead.
  38. */
  39. attribute_deprecated
  40. const char *avcodec_get_sample_fmt_name(int sample_fmt);
  41. /**
  42. * @deprecated Use av_get_sample_fmt() instead.
  43. */
  44. attribute_deprecated
  45. enum AVSampleFormat avcodec_get_sample_fmt(const char* name);
  46. #endif
  47. #if FF_API_OLD_AUDIOCONVERT
  48. /**
  49. * @deprecated Use av_get_channel_layout() instead.
  50. */
  51. attribute_deprecated
  52. int64_t avcodec_get_channel_layout(const char *name);
  53. /**
  54. * @deprecated Use av_get_channel_layout_string() instead.
  55. */
  56. attribute_deprecated
  57. void avcodec_get_channel_layout_string(char *buf, int buf_size, int nb_channels, int64_t channel_layout);
  58. /**
  59. * @deprecated Use av_get_channel_layout_nb_channels() instead.
  60. */
  61. attribute_deprecated
  62. int avcodec_channel_layout_num_channels(int64_t channel_layout);
  63. #endif
  64. /**
  65. * Guess the channel layout
  66. * @param nb_channels
  67. * @param codec_id Codec identifier, or CODEC_ID_NONE if unknown
  68. * @param fmt_name Format name, or NULL if unknown
  69. * @return Channel layout mask
  70. */
  71. int64_t avcodec_guess_channel_layout(int nb_channels, enum CodecID codec_id, const char *fmt_name);
  72. struct AVAudioConvert;
  73. typedef struct AVAudioConvert AVAudioConvert;
  74. /**
  75. * Create an audio sample format converter context
  76. * @param out_fmt Output sample format
  77. * @param out_channels Number of output channels
  78. * @param in_fmt Input sample format
  79. * @param in_channels Number of input channels
  80. * @param[in] matrix Channel mixing matrix (of dimension in_channel*out_channels). Set to NULL to ignore.
  81. * @param flags See AV_CPU_FLAG_xx
  82. * @return NULL on error
  83. */
  84. AVAudioConvert *av_audio_convert_alloc(enum AVSampleFormat out_fmt, int out_channels,
  85. enum AVSampleFormat in_fmt, int in_channels,
  86. const float *matrix, int flags);
  87. /**
  88. * Free audio sample format converter context
  89. */
  90. void av_audio_convert_free(AVAudioConvert *ctx);
  91. /**
  92. * Convert between audio sample formats
  93. * @param[in] out array of output buffers for each channel. set to NULL to ignore processing of the given channel.
  94. * @param[in] out_stride distance between consecutive output samples (measured in bytes)
  95. * @param[in] in array of input buffers for each channel
  96. * @param[in] in_stride distance between consecutive input samples (measured in bytes)
  97. * @param len length of audio frame size (measured in samples)
  98. */
  99. int av_audio_convert(AVAudioConvert *ctx,
  100. void * const out[6], const int out_stride[6],
  101. const void * const in[6], const int in_stride[6], int len);
  102. #endif /* AVCODEC_AUDIOCONVERT_H */