From 65f5b96dd80519e2a539d19012c5a685e1ddbafd Mon Sep 17 00:00:00 2001 From: Rostislav Pehlivanov Date: Mon, 12 Oct 2015 23:25:45 +0100 Subject: [PATCH] aacenc: increase size of s->planar_samples[] from 6 to 8 Left out of last commit which added support for eight channel audio. --- libavcodec/aacenc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h index b29fdf5307..0e25901f60 100644 --- a/libavcodec/aacenc.h +++ b/libavcodec/aacenc.h @@ -94,7 +94,7 @@ typedef struct AACEncContext { FFTContext mdct1024; ///< long (1024 samples) frame transform context FFTContext mdct128; ///< short (128 samples) frame transform context AVFloatDSPContext *fdsp; - float *planar_samples[6]; ///< saved preprocessed input + float *planar_samples[8]; ///< saved preprocessed input int profile; ///< copied from avctx LPCContext lpc; ///< used by TNS -- 2.11.0