From ed5d62e509bf557764848c05931417b0cd60d4b3 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Fri, 17 Jul 2015 00:17:38 +0200 Subject: [PATCH] lavfi/af_pan: Support a maximum of 64 channels. The Soundflower input device supports 64 channels. --- 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 4ba77a7366..9117cc09c9 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 618c626683..dead46e943 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, \