From 3e0f3be2b027ce2be1ed0f25651286f4f42123d5 Mon Sep 17 00:00:00 2001 From: Marton Balint Date: Tue, 3 Jul 2018 12:10:54 +0200 Subject: avcodec/internal: increase FF_SANE_NB_CHANNELS to 256 This was reduced from 128 in libav commit 192f1984b1a93aa08af053b8f9ab4950f307bd5d, but since we support unknown channel layouts, we can increase this limit. Fixes ticket #6332. Signed-off-by: Marton Balint --- libavcodec/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/internal.h') diff --git a/libavcodec/internal.h b/libavcodec/internal.h index bb92873d7b..0c2133f092 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -83,7 +83,7 @@ #define FF_QSCALE_TYPE_H264 2 #define FF_QSCALE_TYPE_VP56 3 -#define FF_SANE_NB_CHANNELS 64U +#define FF_SANE_NB_CHANNELS 256U #define FF_SIGNBIT(x) ((x) >> CHAR_BIT * sizeof(x) - 1) -- cgit v1.2.1