[libav-commits] ra288: fix formatting of LOCAL_ALIGNED_16

Justin Ruggles git at libav.org
Wed Nov 9 19:49:52 CET 2011


Module: libav
Branch: master
Commit: 9cb70ce34bf12621f6dffc08830aff763d00aa11

Author:    Justin Ruggles <justin.ruggles at gmail.com>
Committer: Justin Ruggles <justin.ruggles at gmail.com>
Date:      Wed Nov  9 13:45:50 2011 -0500

ra288: fix formatting of LOCAL_ALIGNED_16

---

 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 libav-commits mailing list