mirror of https://git.ffmpeg.org/ffmpeg.git
lavfi/af_pan: Support a maximum of 64 channels.
The Soundflower input device supports 64 channels.
This commit is contained in:
parent
a77401e1f7
commit
ed5d62e509
|
@ -37,7 +37,7 @@
|
|||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define MAX_CHANNELS 63
|
||||
#define MAX_CHANNELS 64
|
||||
|
||||
typedef struct PanContext {
|
||||
const AVClass *class;
|
||||
|
|
|
@ -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, \
|
||||
|
|
Loading…
Reference in New Issue