Cosmetics: alignment
authorVitor Sessak <vitor1001@gmail.com>
Wed, 6 Aug 2008 02:49:22 +0000 (02:49 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Wed, 6 Aug 2008 02:49:22 +0000 (02:49 +0000)
Originally committed as revision 14635 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ra288.c

index 8a7719c..f6476c1 100644 (file)
@@ -182,8 +182,8 @@ static void do_hybrid_window(int order, int n, int non_rec, const float *in,
     float work[order + n + non_rec];
 
     /* update history */
-    memmove(hist, hist + n, (order + non_rec)*sizeof(*hist));
-    memcpy (hist + order + non_rec, in, n * sizeof(*hist));
+    memmove(hist                  , hist + n, (order + non_rec)*sizeof(*hist));
+    memcpy (hist + order + non_rec, in      , n                *sizeof(*hist));
 
     colmult(work, window, hist, order + n + non_rec);