Commit e8722fb4 authored by vitor's avatar vitor

Cosmetics: alignment

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14635 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a5bba4d1
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment