annotate ffmpeg/libswresample/swresample.h @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents f445c3017523
children
rev   line source
yading@11 1 /*
yading@11 2 * Copyright (C) 2011-2013 Michael Niedermayer (michaelni@gmx.at)
yading@11 3 *
yading@11 4 * This file is part of libswresample
yading@11 5 *
yading@11 6 * libswresample is free software; you can redistribute it and/or
yading@11 7 * modify it under the terms of the GNU Lesser General Public
yading@11 8 * License as published by the Free Software Foundation; either
yading@11 9 * version 2.1 of the License, or (at your option) any later version.
yading@11 10 *
yading@11 11 * libswresample is distributed in the hope that it will be useful,
yading@11 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@11 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@11 14 * Lesser General Public License for more details.
yading@11 15 *
yading@11 16 * You should have received a copy of the GNU Lesser General Public
yading@11 17 * License along with libswresample; if not, write to the Free Software
yading@11 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@11 19 */
yading@11 20
yading@11 21 #ifndef SWRESAMPLE_SWRESAMPLE_H
yading@11 22 #define SWRESAMPLE_SWRESAMPLE_H
yading@11 23
yading@11 24 /**
yading@11 25 * @file
yading@11 26 * @ingroup lswr
yading@11 27 * libswresample public header
yading@11 28 */
yading@11 29
yading@11 30 /**
yading@11 31 * @defgroup lswr Libswresample
yading@11 32 * @{
yading@11 33 *
yading@11 34 * Libswresample (lswr) is a library that handles audio resampling, sample
yading@11 35 * format conversion and mixing.
yading@11 36 *
yading@11 37 * Interaction with lswr is done through SwrContext, which is
yading@11 38 * allocated with swr_alloc() or swr_alloc_set_opts(). It is opaque, so all parameters
yading@11 39 * must be set with the @ref avoptions API.
yading@11 40 *
yading@11 41 * For example the following code will setup conversion from planar float sample
yading@11 42 * format to interleaved signed 16-bit integer, downsampling from 48kHz to
yading@11 43 * 44.1kHz and downmixing from 5.1 channels to stereo (using the default mixing
yading@11 44 * matrix):
yading@11 45 * @code
yading@11 46 * SwrContext *swr = swr_alloc();
yading@11 47 * av_opt_set_int(swr, "in_channel_layout", AV_CH_LAYOUT_5POINT1, 0);
yading@11 48 * av_opt_set_int(swr, "out_channel_layout", AV_CH_LAYOUT_STEREO, 0);
yading@11 49 * av_opt_set_int(swr, "in_sample_rate", 48000, 0);
yading@11 50 * av_opt_set_int(swr, "out_sample_rate", 44100, 0);
yading@11 51 * av_opt_set_sample_fmt(swr, "in_sample_fmt", AV_SAMPLE_FMT_FLTP, 0);
yading@11 52 * av_opt_set_sample_fmt(swr, "out_sample_fmt", AV_SAMPLE_FMT_S16, 0);
yading@11 53 * @endcode
yading@11 54 *
yading@11 55 * Once all values have been set, it must be initialized with swr_init(). If
yading@11 56 * you need to change the conversion parameters, you can change the parameters
yading@11 57 * as described above, or by using swr_alloc_set_opts(), then call swr_init()
yading@11 58 * again.
yading@11 59 *
yading@11 60 * The conversion itself is done by repeatedly calling swr_convert().
yading@11 61 * Note that the samples may get buffered in swr if you provide insufficient
yading@11 62 * output space or if sample rate conversion is done, which requires "future"
yading@11 63 * samples. Samples that do not require future input can be retrieved at any
yading@11 64 * time by using swr_convert() (in_count can be set to 0).
yading@11 65 * At the end of conversion the resampling buffer can be flushed by calling
yading@11 66 * swr_convert() with NULL in and 0 in_count.
yading@11 67 *
yading@11 68 * The delay between input and output, can at any time be found by using
yading@11 69 * swr_get_delay().
yading@11 70 *
yading@11 71 * The following code demonstrates the conversion loop assuming the parameters
yading@11 72 * from above and caller-defined functions get_input() and handle_output():
yading@11 73 * @code
yading@11 74 * uint8_t **input;
yading@11 75 * int in_samples;
yading@11 76 *
yading@11 77 * while (get_input(&input, &in_samples)) {
yading@11 78 * uint8_t *output;
yading@11 79 * int out_samples = av_rescale_rnd(swr_get_delay(swr, 48000) +
yading@11 80 * in_samples, 44100, 48000, AV_ROUND_UP);
yading@11 81 * av_samples_alloc(&output, NULL, 2, out_samples,
yading@11 82 * AV_SAMPLE_FMT_S16, 0);
yading@11 83 * out_samples = swr_convert(swr, &output, out_samples,
yading@11 84 * input, in_samples);
yading@11 85 * handle_output(output, out_samples);
yading@11 86 * av_freep(&output);
yading@11 87 * }
yading@11 88 * @endcode
yading@11 89 *
yading@11 90 * When the conversion is finished, the conversion
yading@11 91 * context and everything associated with it must be freed with swr_free().
yading@11 92 * There will be no memory leak if the data is not completely flushed before
yading@11 93 * swr_free().
yading@11 94 */
yading@11 95
yading@11 96 #include <stdint.h>
yading@11 97 #include "libavutil/samplefmt.h"
yading@11 98
yading@11 99 #include "libswresample/version.h"
yading@11 100
yading@11 101 #if LIBSWRESAMPLE_VERSION_MAJOR < 1
yading@11 102 #define SWR_CH_MAX 32 ///< Maximum number of channels
yading@11 103 #endif
yading@11 104
yading@11 105 #define SWR_FLAG_RESAMPLE 1 ///< Force resampling even if equal sample rate
yading@11 106 //TODO use int resample ?
yading@11 107 //long term TODO can we enable this dynamically?
yading@11 108
yading@11 109 enum SwrDitherType {
yading@11 110 SWR_DITHER_NONE = 0,
yading@11 111 SWR_DITHER_RECTANGULAR,
yading@11 112 SWR_DITHER_TRIANGULAR,
yading@11 113 SWR_DITHER_TRIANGULAR_HIGHPASS,
yading@11 114
yading@11 115 SWR_DITHER_NS = 64, ///< not part of API/ABI
yading@11 116 SWR_DITHER_NS_LIPSHITZ,
yading@11 117 SWR_DITHER_NS_F_WEIGHTED,
yading@11 118 SWR_DITHER_NS_MODIFIED_E_WEIGHTED,
yading@11 119 SWR_DITHER_NS_IMPROVED_E_WEIGHTED,
yading@11 120 SWR_DITHER_NS_SHIBATA,
yading@11 121 SWR_DITHER_NS_LOW_SHIBATA,
yading@11 122 SWR_DITHER_NS_HIGH_SHIBATA,
yading@11 123 SWR_DITHER_NB, ///< not part of API/ABI
yading@11 124 };
yading@11 125
yading@11 126 /** Resampling Engines */
yading@11 127 enum SwrEngine {
yading@11 128 SWR_ENGINE_SWR, /**< SW Resampler */
yading@11 129 SWR_ENGINE_SOXR, /**< SoX Resampler */
yading@11 130 SWR_ENGINE_NB, ///< not part of API/ABI
yading@11 131 };
yading@11 132
yading@11 133 /** Resampling Filter Types */
yading@11 134 enum SwrFilterType {
yading@11 135 SWR_FILTER_TYPE_CUBIC, /**< Cubic */
yading@11 136 SWR_FILTER_TYPE_BLACKMAN_NUTTALL, /**< Blackman Nuttall Windowed Sinc */
yading@11 137 SWR_FILTER_TYPE_KAISER, /**< Kaiser Windowed Sinc */
yading@11 138 };
yading@11 139
yading@11 140 typedef struct SwrContext SwrContext;
yading@11 141
yading@11 142 /**
yading@11 143 * Get the AVClass for swrContext. It can be used in combination with
yading@11 144 * AV_OPT_SEARCH_FAKE_OBJ for examining options.
yading@11 145 *
yading@11 146 * @see av_opt_find().
yading@11 147 */
yading@11 148 const AVClass *swr_get_class(void);
yading@11 149
yading@11 150 /**
yading@11 151 * Allocate SwrContext.
yading@11 152 *
yading@11 153 * If you use this function you will need to set the parameters (manually or
yading@11 154 * with swr_alloc_set_opts()) before calling swr_init().
yading@11 155 *
yading@11 156 * @see swr_alloc_set_opts(), swr_init(), swr_free()
yading@11 157 * @return NULL on error, allocated context otherwise
yading@11 158 */
yading@11 159 struct SwrContext *swr_alloc(void);
yading@11 160
yading@11 161 /**
yading@11 162 * Initialize context after user parameters have been set.
yading@11 163 *
yading@11 164 * @return AVERROR error code in case of failure.
yading@11 165 */
yading@11 166 int swr_init(struct SwrContext *s);
yading@11 167
yading@11 168 /**
yading@11 169 * Allocate SwrContext if needed and set/reset common parameters.
yading@11 170 *
yading@11 171 * This function does not require s to be allocated with swr_alloc(). On the
yading@11 172 * other hand, swr_alloc() can use swr_alloc_set_opts() to set the parameters
yading@11 173 * on the allocated context.
yading@11 174 *
yading@11 175 * @param s Swr context, can be NULL
yading@11 176 * @param out_ch_layout output channel layout (AV_CH_LAYOUT_*)
yading@11 177 * @param out_sample_fmt output sample format (AV_SAMPLE_FMT_*).
yading@11 178 * @param out_sample_rate output sample rate (frequency in Hz)
yading@11 179 * @param in_ch_layout input channel layout (AV_CH_LAYOUT_*)
yading@11 180 * @param in_sample_fmt input sample format (AV_SAMPLE_FMT_*).
yading@11 181 * @param in_sample_rate input sample rate (frequency in Hz)
yading@11 182 * @param log_offset logging level offset
yading@11 183 * @param log_ctx parent logging context, can be NULL
yading@11 184 *
yading@11 185 * @see swr_init(), swr_free()
yading@11 186 * @return NULL on error, allocated context otherwise
yading@11 187 */
yading@11 188 struct SwrContext *swr_alloc_set_opts(struct SwrContext *s,
yading@11 189 int64_t out_ch_layout, enum AVSampleFormat out_sample_fmt, int out_sample_rate,
yading@11 190 int64_t in_ch_layout, enum AVSampleFormat in_sample_fmt, int in_sample_rate,
yading@11 191 int log_offset, void *log_ctx);
yading@11 192
yading@11 193 /**
yading@11 194 * Free the given SwrContext and set the pointer to NULL.
yading@11 195 */
yading@11 196 void swr_free(struct SwrContext **s);
yading@11 197
yading@11 198 /**
yading@11 199 * Convert audio.
yading@11 200 *
yading@11 201 * in and in_count can be set to 0 to flush the last few samples out at the
yading@11 202 * end.
yading@11 203 *
yading@11 204 * If more input is provided than output space then the input will be buffered.
yading@11 205 * You can avoid this buffering by providing more output space than input.
yading@11 206 * Convertion will run directly without copying whenever possible.
yading@11 207 *
yading@11 208 * @param s allocated Swr context, with parameters set
yading@11 209 * @param out output buffers, only the first one need be set in case of packed audio
yading@11 210 * @param out_count amount of space available for output in samples per channel
yading@11 211 * @param in input buffers, only the first one need to be set in case of packed audio
yading@11 212 * @param in_count number of input samples available in one channel
yading@11 213 *
yading@11 214 * @return number of samples output per channel, negative value on error
yading@11 215 */
yading@11 216 int swr_convert(struct SwrContext *s, uint8_t **out, int out_count,
yading@11 217 const uint8_t **in , int in_count);
yading@11 218
yading@11 219 /**
yading@11 220 * Convert the next timestamp from input to output
yading@11 221 * timestamps are in 1/(in_sample_rate * out_sample_rate) units.
yading@11 222 *
yading@11 223 * @note There are 2 slightly differently behaving modes.
yading@11 224 * First is when automatic timestamp compensation is not used, (min_compensation >= FLT_MAX)
yading@11 225 * in this case timestamps will be passed through with delays compensated
yading@11 226 * Second is when automatic timestamp compensation is used, (min_compensation < FLT_MAX)
yading@11 227 * in this case the output timestamps will match output sample numbers
yading@11 228 *
yading@11 229 * @param pts timestamp for the next input sample, INT64_MIN if unknown
yading@11 230 * @return the output timestamp for the next output sample
yading@11 231 */
yading@11 232 int64_t swr_next_pts(struct SwrContext *s, int64_t pts);
yading@11 233
yading@11 234 /**
yading@11 235 * Activate resampling compensation.
yading@11 236 */
yading@11 237 int swr_set_compensation(struct SwrContext *s, int sample_delta, int compensation_distance);
yading@11 238
yading@11 239 /**
yading@11 240 * Set a customized input channel mapping.
yading@11 241 *
yading@11 242 * @param s allocated Swr context, not yet initialized
yading@11 243 * @param channel_map customized input channel mapping (array of channel
yading@11 244 * indexes, -1 for a muted channel)
yading@11 245 * @return AVERROR error code in case of failure.
yading@11 246 */
yading@11 247 int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map);
yading@11 248
yading@11 249 /**
yading@11 250 * Set a customized remix matrix.
yading@11 251 *
yading@11 252 * @param s allocated Swr context, not yet initialized
yading@11 253 * @param matrix remix coefficients; matrix[i + stride * o] is
yading@11 254 * the weight of input channel i in output channel o
yading@11 255 * @param stride offset between lines of the matrix
yading@11 256 * @return AVERROR error code in case of failure.
yading@11 257 */
yading@11 258 int swr_set_matrix(struct SwrContext *s, const double *matrix, int stride);
yading@11 259
yading@11 260 /**
yading@11 261 * Drops the specified number of output samples.
yading@11 262 */
yading@11 263 int swr_drop_output(struct SwrContext *s, int count);
yading@11 264
yading@11 265 /**
yading@11 266 * Injects the specified number of silence samples.
yading@11 267 */
yading@11 268 int swr_inject_silence(struct SwrContext *s, int count);
yading@11 269
yading@11 270 /**
yading@11 271 * Gets the delay the next input sample will experience relative to the next output sample.
yading@11 272 *
yading@11 273 * Swresample can buffer data if more input has been provided than available
yading@11 274 * output space, also converting between sample rates needs a delay.
yading@11 275 * This function returns the sum of all such delays.
yading@11 276 * The exact delay is not necessarily an integer value in either input or
yading@11 277 * output sample rate. Especially when downsampling by a large value, the
yading@11 278 * output sample rate may be a poor choice to represent the delay, similarly
yading@11 279 * for upsampling and the input sample rate.
yading@11 280 *
yading@11 281 * @param s swr context
yading@11 282 * @param base timebase in which the returned delay will be
yading@11 283 * if its set to 1 the returned delay is in seconds
yading@11 284 * if its set to 1000 the returned delay is in milli seconds
yading@11 285 * if its set to the input sample rate then the returned delay is in input samples
yading@11 286 * if its set to the output sample rate then the returned delay is in output samples
yading@11 287 * an exact rounding free delay can be found by using LCM(in_sample_rate, out_sample_rate)
yading@11 288 * @returns the delay in 1/base units.
yading@11 289 */
yading@11 290 int64_t swr_get_delay(struct SwrContext *s, int64_t base);
yading@11 291
yading@11 292 /**
yading@11 293 * Return the LIBSWRESAMPLE_VERSION_INT constant.
yading@11 294 */
yading@11 295 unsigned swresample_version(void);
yading@11 296
yading@11 297 /**
yading@11 298 * Return the swr build-time configuration.
yading@11 299 */
yading@11 300 const char *swresample_configuration(void);
yading@11 301
yading@11 302 /**
yading@11 303 * Return the swr license.
yading@11 304 */
yading@11 305 const char *swresample_license(void);
yading@11 306
yading@11 307 /**
yading@11 308 * @}
yading@11 309 */
yading@11 310
yading@11 311 #endif /* SWRESAMPLE_SWRESAMPLE_H */