swresample.h 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /*
  2. * Copyright (C) 2011-2012 Michael Niedermayer (michaelni@gmx.at)
  3. *
  4. * This file is part of libswresample
  5. *
  6. * libswresample is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * libswresample is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with libswresample; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * libswresample public header
  23. */
  24. #ifndef SWRESAMPLE_SWRESAMPLE_H
  25. #define SWRESAMPLE_SWRESAMPLE_H
  26. #include <inttypes.h>
  27. #include "libavutil/samplefmt.h"
  28. #include "libswresample/version.h"
  29. #if LIBSWRESAMPLE_VERSION_MAJOR < 1
  30. #define SWR_CH_MAX 32 ///< Maximum number of channels
  31. #endif
  32. #define SWR_FLAG_RESAMPLE 1 ///< Force resampling even if equal sample rate
  33. //TODO use int resample ?
  34. //long term TODO can we enable this dynamically?
  35. enum SwrDitherType {
  36. SWR_DITHER_NONE = 0,
  37. SWR_DITHER_RECTANGULAR,
  38. SWR_DITHER_TRIANGULAR,
  39. SWR_DITHER_TRIANGULAR_HIGHPASS,
  40. SWR_DITHER_NB, ///< not part of API/ABI
  41. };
  42. /** Resampling Filter Types */
  43. enum SwrFilterType {
  44. SWR_FILTER_TYPE_CUBIC, /**< Cubic */
  45. SWR_FILTER_TYPE_BLACKMAN_NUTTALL, /**< Blackman Nuttall Windowed Sinc */
  46. SWR_FILTER_TYPE_KAISER, /**< Kaiser Windowed Sinc */
  47. };
  48. typedef struct SwrContext SwrContext;
  49. /**
  50. * Get the AVClass for swrContext. It can be used in combination with
  51. * AV_OPT_SEARCH_FAKE_OBJ for examining options.
  52. *
  53. * @see av_opt_find().
  54. */
  55. const AVClass *swr_get_class(void);
  56. /**
  57. * Allocate SwrContext.
  58. *
  59. * If you use this function you will need to set the parameters (manually or
  60. * with swr_alloc_set_opts()) before calling swr_init().
  61. *
  62. * @see swr_alloc_set_opts(), swr_init(), swr_free()
  63. * @return NULL on error, allocated context otherwise
  64. */
  65. struct SwrContext *swr_alloc(void);
  66. /**
  67. * Initialize context after user parameters have been set.
  68. *
  69. * @return AVERROR error code in case of failure.
  70. */
  71. int swr_init(struct SwrContext *s);
  72. /**
  73. * Allocate SwrContext if needed and set/reset common parameters.
  74. *
  75. * This function does not require s to be allocated with swr_alloc(). On the
  76. * other hand, swr_alloc() can use swr_alloc_set_opts() to set the parameters
  77. * on the allocated context.
  78. *
  79. * @param s Swr context, can be NULL
  80. * @param out_ch_layout output channel layout (AV_CH_LAYOUT_*)
  81. * @param out_sample_fmt output sample format (AV_SAMPLE_FMT_*).
  82. * @param out_sample_rate output sample rate (frequency in Hz)
  83. * @param in_ch_layout input channel layout (AV_CH_LAYOUT_*)
  84. * @param in_sample_fmt input sample format (AV_SAMPLE_FMT_*).
  85. * @param in_sample_rate input sample rate (frequency in Hz)
  86. * @param log_offset logging level offset
  87. * @param log_ctx parent logging context, can be NULL
  88. *
  89. * @see swr_init(), swr_free()
  90. * @return NULL on error, allocated context otherwise
  91. */
  92. struct SwrContext *swr_alloc_set_opts(struct SwrContext *s,
  93. int64_t out_ch_layout, enum AVSampleFormat out_sample_fmt, int out_sample_rate,
  94. int64_t in_ch_layout, enum AVSampleFormat in_sample_fmt, int in_sample_rate,
  95. int log_offset, void *log_ctx);
  96. /**
  97. * Free the given SwrContext and set the pointer to NULL.
  98. */
  99. void swr_free(struct SwrContext **s);
  100. /**
  101. * Convert audio.
  102. *
  103. * in and in_count can be set to 0 to flush the last few samples out at the
  104. * end.
  105. *
  106. * If more input is provided than output space then the input will be buffered.
  107. * You can avoid this buffering by providing more output space than input.
  108. * Convertion will run directly without copying whenever possible.
  109. *
  110. * @param s allocated Swr context, with parameters set
  111. * @param out output buffers, only the first one need be set in case of packed audio
  112. * @param out_count amount of space available for output in samples per channel
  113. * @param in input buffers, only the first one need to be set in case of packed audio
  114. * @param in_count number of input samples available in one channel
  115. *
  116. * @return number of samples output per channel, negative value on error
  117. */
  118. int swr_convert(struct SwrContext *s, uint8_t **out, int out_count,
  119. const uint8_t **in , int in_count);
  120. /**
  121. * Convert the next timestamp from input to output
  122. * timestampe are in 1/(in_sample_rate * out_sample_rate) units.
  123. *
  124. * @note There are 2 slightly differently behaving modes.
  125. * First is when automatic timestamp compensation is not used, (min_compensation >= FLT_MAX)
  126. * in this case timestamps will be passed through with delays compensated
  127. * Second is when automatic timestamp compensation is used, (min_compensation < FLT_MAX)
  128. * in this case the output timestamps will match output sample numbers
  129. *
  130. * @param pts timstamp for the next input sample, INT64_MIN if unknown
  131. * @returns the output timestamp for the next output sample
  132. */
  133. int64_t swr_next_pts(struct SwrContext *s, int64_t pts);
  134. /**
  135. * Activate resampling compensation.
  136. */
  137. int swr_set_compensation(struct SwrContext *s, int sample_delta, int compensation_distance);
  138. /**
  139. * Set a customized input channel mapping.
  140. *
  141. * @param s allocated Swr context, not yet initialized
  142. * @param channel_map customized input channel mapping (array of channel
  143. * indexes, -1 for a muted channel)
  144. * @return AVERROR error code in case of failure.
  145. */
  146. int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map);
  147. /**
  148. * Set a customized remix matrix.
  149. *
  150. * @param s allocated Swr context, not yet initialized
  151. * @param matrix remix coefficients; matrix[i + stride * o] is
  152. * the weight of input channel i in output channel o
  153. * @param stride offset between lines of the matrix
  154. * @return AVERROR error code in case of failure.
  155. */
  156. int swr_set_matrix(struct SwrContext *s, const double *matrix, int stride);
  157. /**
  158. * Drops the specified number of output samples.
  159. */
  160. int swr_drop_output(struct SwrContext *s, int count);
  161. /**
  162. * Injects the specified number of silence samples.
  163. */
  164. int swr_inject_silence(struct SwrContext *s, int count);
  165. /**
  166. * Gets the delay the next input sample will experience relative to the next output sample.
  167. *
  168. * Swresample can buffer data if more input has been provided than available
  169. * output space, also converting between sample rates needs a delay.
  170. * This function returns the sum of all such delays.
  171. *
  172. * @param s swr context
  173. * @param base timebase in which the returned delay will be
  174. * if its set to 1 the returned delay is in seconds
  175. * if its set to 1000 the returned delay is in milli seconds
  176. * if its set to the input sample rate then the returned delay is in input samples
  177. * if its set to the output sample rate then the returned delay is in output samples
  178. * an exact rounding free delay can be found by using LCM(in_sample_rate, out_sample_rate)
  179. * @returns the delay in 1/base units.
  180. */
  181. int64_t swr_get_delay(struct SwrContext *s, int64_t base);
  182. /**
  183. * Return the LIBSWRESAMPLE_VERSION_INT constant.
  184. */
  185. unsigned swresample_version(void);
  186. /**
  187. * Return the swr build-time configuration.
  188. */
  189. const char *swresample_configuration(void);
  190. /**
  191. * Return the swr license.
  192. */
  193. const char *swresample_license(void);
  194. #endif /* SWRESAMPLE_SWRESAMPLE_H */