Skip to content
Snippets Groups Projects
Commit 2e626dd5 authored by Nathan Caldwell's avatar Nathan Caldwell Committed by Anton Khirnov
Browse files

aacenc: Fix LONG_START windowing.


Forgot to add the equivalent amount to the incoming sample pointer as the output pointer.

Signed-off-by: default avatarAnton Khirnov <anton@khirnov.net>
parent dc7e7d4d
No related branches found
No related tags found
No related merge requests found
......@@ -200,8 +200,8 @@ WINDOW_FUNC(long_start)
float *out = sce->ret;
dsp->vector_fmul(out, audio, lwindow, 1024);
memcpy(out + 1024, audio, sizeof(out[0]) * 448);
dsp->vector_fmul_reverse(out + 1024 + 448, audio, swindow, 128);
memcpy(out + 1024, audio + 1024, sizeof(out[0]) * 448);
dsp->vector_fmul_reverse(out + 1024 + 448, audio + 1024 + 448, swindow, 128);
memset(out + 1024 + 576, 0, sizeof(out[0]) * 448);
}
......
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