[FFmpeg-cvslog] lavfi/af_pan: Support a maximum of 64 channels.
Carl Eugen Hoyos
git at videolan.org
Fri Jul 17 02:11:13 CEST 2015
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Fri Jul 17 00:17:38 2015 +0200| [ed5d62e509bf557764848c05931417b0cd60d4b3] | committer: Carl Eugen Hoyos
lavfi/af_pan: Support a maximum of 64 channels.
The Soundflower input device supports 64 channels.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ed5d62e509bf557764848c05931417b0cd60d4b3
---
libavfilter/af_pan.c | 2 +-
libavfilter/version.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/af_pan.c b/libavfilter/af_pan.c
index 4ba77a7..9117cc0 100644
--- a/libavfilter/af_pan.c
+++ b/libavfilter/af_pan.c
@@ -37,7 +37,7 @@
#include "formats.h"
#include "internal.h"
-#define MAX_CHANNELS 63
+#define MAX_CHANNELS 64
typedef struct PanContext {
const AVClass *class;
diff --git a/libavfilter/version.h b/libavfilter/version.h
index 618c626..dead46e 100644
--- a/libavfilter/version.h
+++ b/libavfilter/version.h
@@ -31,7 +31,7 @@
#define LIBAVFILTER_VERSION_MAJOR 5
#define LIBAVFILTER_VERSION_MINOR 22
-#define LIBAVFILTER_VERSION_MICRO 100
+#define LIBAVFILTER_VERSION_MICRO 101
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
More information about the ffmpeg-cvslog
mailing list