Cosmetics: alignment

Originally committed as revision 14635 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-08-06 02:49:22 +00:00
parent e3751aa6ec
commit 5991704634
1 changed files with 2 additions and 2 deletions

View 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);