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:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2015-07-17 01:17:38 +0300
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2015-07-17 01:18:29 +0300
commited5d62e509bf557764848c05931417b0cd60d4b3 (patch)
treef61fbe4bd98a1c03ca6aad293f52a8e50dd3435f /libavfilter/af_pan.c
parenta77401e1f712d17f3e07112fbf4b3b94abcf7a88 (diff)
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;