summaryrefslogtreecommitdiffstats
path: root/libavcodec/ra288.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-11-09 04:53:33 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-11-09 04:53:33 +0100
commit11e155c2192a566611b598b305515a7d7168f5a0 (patch)
treeb561782119dae350a02c435d3169bfb27b01f78c /libavcodec/ra288.c
parentb2bdca1b4a739992779f6641fcc122cffb240eb6 (diff)
downloadffmpeg-streaming-11e155c2192a566611b598b305515a7d7168f5a0.zip
ffmpeg-streaming-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c
index e22d7ee..3ff9562 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));
OpenPOWER on IntegriCloud