Skip to content
Snippets Groups Projects
Commit 0fe0e213 authored by Rostislav Pehlivanov's avatar Rostislav Pehlivanov
Browse files

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: default avatarRostislav Pehlivanov <atomnuker@gmail.com>
parent 588e2e33
No related branches found
No related tags found
No related merge requests found
......@@ -995,6 +995,10 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment