diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-08-06 02:49:22 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-08-06 02:49:22 +0000 |
commit | 599170463456d6c706da00c78548a76e4150b67a (patch) | |
tree | a0993c19798902ac737453b3cd3fc5c86a101d91 /libavcodec/ra288.c | |
parent | e3751aa6ec8147ab7ca2649d4daadf8d4dce27d5 (diff) | |
download | ffmpeg-599170463456d6c706da00c78548a76e4150b67a.tar.gz |
Cosmetics: alignment
Originally committed as revision 14635 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r-- | libavcodec/ra288.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 8a7719c9f6..f6476c1d1f 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -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); |