diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-07-17 00:17:38 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-07-17 00:18:29 +0200 |
commit | ed5d62e509bf557764848c05931417b0cd60d4b3 (patch) | |
tree | f61fbe4bd98a1c03ca6aad293f52a8e50dd3435f | |
parent | a77401e1f712d17f3e07112fbf4b3b94abcf7a88 (diff) | |
download | ffmpeg-ed5d62e509bf557764848c05931417b0cd60d4b3.tar.gz |
lavfi/af_pan: Support a maximum of 64 channels.
The Soundflower input device supports 64 channels.
-rw-r--r-- | libavfilter/af_pan.c | 2 | ||||
-rw-r--r-- | 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, \ |