summaryrefslogtreecommitdiff
path: root/apps/codecs/libwma
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-11-21 21:54:46 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-11-21 21:54:46 +0000
commitf99b896017cf8d4ac2998377b40a6c839a1bd91c (patch)
tree1764b2d0196411dc3696f62ecc227e1b8e7f27c7 /apps/codecs/libwma
parent1aac58553cbc930d72f169991531e602a069b5c3 (diff)
downloadrockbox-f99b896017cf8d4ac2998377b40a6c839a1bd91c.zip
rockbox-f99b896017cf8d4ac2998377b40a6c839a1bd91c.tar.gz
rockbox-f99b896017cf8d4ac2998377b40a6c839a1bd91c.tar.bz2
rockbox-f99b896017cf8d4ac2998377b40a6c839a1bd91c.tar.xz
Remove tabs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28635 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwma')
-rw-r--r--apps/codecs/libwma/wmadeci.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/codecs/libwma/wmadeci.c b/apps/codecs/libwma/wmadeci.c
index f24ac13..9333f19 100644
--- a/apps/codecs/libwma/wmadeci.c
+++ b/apps/codecs/libwma/wmadeci.c
@@ -1232,7 +1232,7 @@ static int wma_decode_block(WMADecodeContext *s)
for(ch = 0; ch < s->nb_channels; ++ch)
{
/* BLOCK_MAX_SIZE is 2048 (samples) and MAX_CHANNELS is 2. */
- static uint32_t scratch_buf[BLOCK_MAX_SIZE * MAX_CHANNELS] IBSS_ATTR;
+ static uint32_t scratch_buf[BLOCK_MAX_SIZE * MAX_CHANNELS] IBSS_ATTR;
if (s->channel_coded[ch])
{
int n4, index;
@@ -1348,9 +1348,9 @@ int wma_decode_superframe_frame(WMADecodeContext* s,
int done = 0;
for(ch = 0; ch < s->nb_channels; ch++)
- memmove(&((*s->frame_out)[ch][0]),
- &((*s->frame_out)[ch][s->frame_len]),
- s->frame_len * sizeof(fixed32));
+ memmove(&((*s->frame_out)[ch][0]),
+ &((*s->frame_out)[ch][s->frame_len]),
+ s->frame_len * sizeof(fixed32));
if ((s->use_bit_reservoir) && (s->current_frame == 0))
{