summaryrefslogtreecommitdiffstats
path: root/apps/codecs
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2011-09-23 13:54:36 +0000
committerNils Wallménius <nils@rockbox.org>2011-09-23 13:54:36 +0000
commit2abb52a0840dcc613aded5d3ef16c7575e6816e3 (patch)
tree15116dfc5c7b1f0254ea9af6cb032ea7ebf83c71 /apps/codecs
parentc2bd876e89e39fe0639cd60a1092841dd778c61f (diff)
downloadrockbox-2abb52a0840dcc613aded5d3ef16c7575e6816e3.tar.gz
rockbox-2abb52a0840dcc613aded5d3ef16c7575e6816e3.zip
libtremor: small whitespace cleanup.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30583 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/libtremor/ffmpeg_stuff.h9
1 files 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);