[FFmpeg-cvslog] ra288: try to fix 10l typo that breaks compile on some platforms

Michael Niedermayer git at videolan.org
Wed Nov 9 04:56:54 CET 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Nov  9 04:53:33 2011 +0100| [11e155c2192a566611b598b305515a7d7168f5a0] | committer: Michael Niedermayer

ra288: try to fix 10l typo that breaks compile on some platforms

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=11e155c2192a566611b598b305515a7d7168f5a0
---

 libavcodec/ra288.c |    4 ++--
 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));
 



More information about the ffmpeg-cvslog mailing list