[FFmpeg-cvslog] aacenc: increase size of s->planar_samples[] from 6 to 8
Rostislav Pehlivanov
git at videolan.org
Tue Oct 13 00:26:55 CEST 2015
ffmpeg | branch: master | Rostislav Pehlivanov <atomnuker at gmail.com> | Mon Oct 12 23:25:45 2015 +0100| [65f5b96dd80519e2a539d19012c5a685e1ddbafd] | committer: Rostislav Pehlivanov
aacenc: increase size of s->planar_samples[] from 6 to 8
Left out of last commit which added support for eight channel audio.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=65f5b96dd80519e2a539d19012c5a685e1ddbafd
---
libavcodec/aacenc.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h
index b29fdf5..0e25901 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
More information about the ffmpeg-cvslog
mailing list