summaryrefslogtreecommitdiff
path: root/libavfilter/af_pan.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2015-07-17 00:17:38 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2015-07-17 00:18:29 +0200
commited5d62e509bf557764848c05931417b0cd60d4b3 (patch)
treef61fbe4bd98a1c03ca6aad293f52a8e50dd3435f /libavfilter/af_pan.c
parenta77401e1f712d17f3e07112fbf4b3b94abcf7a88 (diff)
downloadffmpeg-ed5d62e509bf557764848c05931417b0cd60d4b3.tar.gz
lavfi/af_pan: Support a maximum of 64 channels.
The Soundflower input device supports 64 channels.
Diffstat (limited to 'libavfilter/af_pan.c')
-rw-r--r--libavfilter/af_pan.c2
1 files changed, 1 insertions, 1 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;