aacenc: temporarily disable Mid/Side coding with multichannel files
Results in dropping out in channels, usually on EIGHT_SHORT windows.
Will be reenabled once the cause has been investigated and a fix has
been made.
Signed-off-by: Rostislav Pehlivanov <[email protected]>
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c
index 1de266d..5a70da1 100644
--- a/libavcodec/aacenc.c
+++ b/libavcodec/aacenc.c
@@ -995,6 +995,10 @@
ERROR_IF(s->options.ltp && avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL,
"The LPT profile requires experimental compliance, add -strict -2 to enable!\n");
+ /* M/S introduces horrible artifacts with multichannel files, this is temporary */
+ if (s->channels > 3)
+ s->options.mid_side = 0;
+
if ((ret = dsp_init(avctx, s)) < 0)
goto fail;