Skip to content
Snippets Groups Projects
Commit 9cb70ce3 authored by Justin Ruggles's avatar Justin Ruggles
Browse files

ra288: fix formatting of LOCAL_ALIGNED_16

parent 65ac5137
No related branches found
No related tags found
No related merge requests found
...@@ -128,9 +128,9 @@ static void do_hybrid_window(RA288Context *ractx, ...@@ -128,9 +128,9 @@ static void do_hybrid_window(RA288Context *ractx,
int i; int i;
float buffer1[MAX_BACKWARD_FILTER_ORDER + 1]; float buffer1[MAX_BACKWARD_FILTER_ORDER + 1];
float buffer2[MAX_BACKWARD_FILTER_ORDER + 1]; float buffer2[MAX_BACKWARD_FILTER_ORDER + 1];
LOCAL_ALIGNED_16(float, work)[FFALIGN(MAX_BACKWARD_FILTER_ORDER + LOCAL_ALIGNED_16(float, work, [FFALIGN(MAX_BACKWARD_FILTER_ORDER +
MAX_BACKWARD_FILTER_LEN + MAX_BACKWARD_FILTER_LEN +
MAX_BACKWARD_FILTER_NONREC, 8)]; MAX_BACKWARD_FILTER_NONREC, 8)]);
ractx->dsp.vector_fmul(work, window, hist, FFALIGN(order + n + non_rec, 8)); ractx->dsp.vector_fmul(work, window, hist, FFALIGN(order + n + non_rec, 8));
......
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