Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-25 01:38:14 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-03-25 01:38:14 +0400
commit74656bdd4cad504b7c635dbaf294d24eb3ad2375 (patch)
tree4f8cebf023a8976f2c9f4884fd82daa3146b1a3b /libswresample
parentf8ba7c46587d3c690d5491dc9fdfe20a4faad902 (diff)
swresample: support up to 32 channels
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r--libswresample/swresample.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h
index 50f29103c8..44d0003cd5 100644
--- a/libswresample/swresample.h
+++ b/libswresample/swresample.h
@@ -30,14 +30,14 @@
#include "libavutil/samplefmt.h"
#define LIBSWRESAMPLE_VERSION_MAJOR 0
-#define LIBSWRESAMPLE_VERSION_MINOR 7
+#define LIBSWRESAMPLE_VERSION_MINOR 8
#define LIBSWRESAMPLE_VERSION_MICRO 100
#define LIBSWRESAMPLE_VERSION_INT AV_VERSION_INT(LIBSWRESAMPLE_VERSION_MAJOR, \
LIBSWRESAMPLE_VERSION_MINOR, \
LIBSWRESAMPLE_VERSION_MICRO)
-#define SWR_CH_MAX 16 ///< Maximum number of channels
+#define SWR_CH_MAX 32 ///< Maximum number of channels
#define SWR_FLAG_RESAMPLE 1 ///< Force resampling even if equal sample rate
//TODO use int resample ?