From 2abb52a0840dcc613aded5d3ef16c7575e6816e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20Wallm=C3=A9nius?= Date: Fri, 23 Sep 2011 13:54:36 +0000 Subject: [PATCH] libtremor: small whitespace cleanup. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30583 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libtremor/ffmpeg_stuff.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/apps/codecs/libtremor/ffmpeg_stuff.h b/apps/codecs/libtremor/ffmpeg_stuff.h index a08952d95d..d7fa846507 100644 --- a/apps/codecs/libtremor/ffmpeg_stuff.h +++ b/apps/codecs/libtremor/ffmpeg_stuff.h @@ -110,11 +110,10 @@ static inline void window_overlap_add(unsigned int blocksize, unsigned int lastb unsigned retlen = (blocksize + lastblock) / 4; int j; for (j = 0; j < ch; j++) { - ogg_int32_t *residue = v->residues[v->ri] + j * blocksize / 2; - ogg_int32_t *saved; - saved = v->saved_ptr[j]; - ogg_int32_t *ret = v->floors + j * retlen; - ogg_int32_t *buf = residue; + ogg_int32_t *residue = v->residues[v->ri] + j * blocksize / 2; + ogg_int32_t *saved = v->saved_ptr[j]; + ogg_int32_t *ret = v->floors + j * retlen; + ogg_int32_t *buf = residue; if (v->W == v->lW) { ff_vector_fmul_window_c(ret, saved, buf, win, blocksize / 4);