diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-07-28 04:24:08 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-07-28 04:24:08 +0000 |
commit | c6ad13044abb264594374d04845e5ef17e975942 (patch) | |
tree | 6239c9e0ec5685f13b3b37e5b1f2fbaa22c5cdde /libavcodec | |
parent | 2c4636716371940b570e5b11cd7bac5b2782b602 (diff) | |
download | ffmpeg-c6ad13044abb264594374d04845e5ef17e975942.tar.gz |
Cosmetics: do not align with now removed next instruction
Originally committed as revision 14449 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ra288.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index bdd0233f5e..d02ed97d24 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -177,7 +177,7 @@ static void do_hybrid_window(int order, int n, int non_rec, const float *in, float work[111]; /* update history */ - memmove(hist , hist + n, (order + non_rec)*sizeof(*hist)); + memmove(hist, hist + n, (order + non_rec)*sizeof(*hist)); for (x=0; x < n; x++) hist[order + non_rec + x] = in[n-x-1]; |