diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-09 04:53:33 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-09 04:53:33 +0100 |
commit | 11e155c2192a566611b598b305515a7d7168f5a0 (patch) | |
tree | b561782119dae350a02c435d3169bfb27b01f78c /libavcodec/ra288.c | |
parent | b2bdca1b4a739992779f6641fcc122cffb240eb6 (diff) | |
download | ffmpeg-11e155c2192a566611b598b305515a7d7168f5a0.tar.gz |
ra288: try to fix 10l typo that breaks compile on some platforms
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r-- | libavcodec/ra288.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index e22d7ee675..3ff9562e69 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -128,9 +128,9 @@ static void do_hybrid_window(RA288Context *ractx, int i; float buffer1[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_NONREC, 8)]; + MAX_BACKWARD_FILTER_NONREC, 8)]); ractx->dsp.vector_fmul(work, window, hist, FFALIGN(order + n + non_rec, 8)); |