[FFmpeg-cvslog] ra288: fix formatting of LOCAL_ALIGNED_16

Justin Ruggles git at videolan.org
Thu Nov 10 03:59:00 CET 2011


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Wed Nov  9 13:45:50 2011 -0500| [9cb70ce34bf12621f6dffc08830aff763d00aa11] | committer: Justin Ruggles

ra288: fix formatting of LOCAL_ALIGNED_16

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

 libavcodec/ra288.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c
index ddbda1d..eac2e2e 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 +
-                                          MAX_BACKWARD_FILTER_LEN   +
-                                          MAX_BACKWARD_FILTER_NONREC, 8)];
+    LOCAL_ALIGNED_16(float, work, [FFALIGN(MAX_BACKWARD_FILTER_ORDER +
+                                           MAX_BACKWARD_FILTER_LEN   +
+                                           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