diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-24 04:30:32 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-24 16:55:45 +0100 |
commit | 58205edcc67f606f13f2bc4571e5f5bd61eaef05 (patch) | |
tree | 9e3f55febeb55902b8abb3cfc9951f4752207792 /libswresample/swresample.h | |
parent | 573ffbb3b563d8ab9e4363acfad62d1a688f05c1 (diff) | |
download | ffmpeg-58205edcc67f606f13f2bc4571e5f5bd61eaef05.tar.gz |
swr: use native planar sample formats.
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r-- | libswresample/swresample.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h index d7b55a0f70..fad09358d5 100644 --- a/libswresample/swresample.h +++ b/libswresample/swresample.h @@ -30,7 +30,7 @@ #include "libavutil/samplefmt.h" #define LIBSWRESAMPLE_VERSION_MAJOR 0 -#define LIBSWRESAMPLE_VERSION_MINOR 4 +#define LIBSWRESAMPLE_VERSION_MINOR 5 #define LIBSWRESAMPLE_VERSION_MICRO 0 #define SWR_CH_MAX 16 ///< Maximum number of channels @@ -69,10 +69,10 @@ int swr_init(struct SwrContext *s); * * @param s Swr context, can be NULL * @param out_ch_layout output channel layout (AV_CH_LAYOUT_*) - * @param out_sample_fmt output sample format (AV_SAMPLE_FMT_*). Use +0x100 for planar audio + * @param out_sample_fmt output sample format (AV_SAMPLE_FMT_*). * @param out_sample_rate output sample rate (frequency in Hz) * @param in_ch_layout input channel layout (AV_CH_LAYOUT_*) - * @param in_sample_fmt input sample format (AV_SAMPLE_FMT_*). Use +0x100 for planar audio + * @param in_sample_fmt input sample format (AV_SAMPLE_FMT_*). * @param in_sample_rate input sample rate (frequency in Hz) * @param log_offset logging level offset * @param log_ctx parent logging context, can be NULL |