# HG changeset patch # User cehoyos # Date 1268177865 0 # Node ID d5673aafc6bf29f857ce2d12bb7166606b0b6a14 # Parent 01559518729eae262858143f4b9905e359044846 Fix indentation after r22414. diff -r 01559518729e -r d5673aafc6bf wmadec.c --- a/wmadec.c Tue Mar 09 23:35:57 2010 +0000 +++ b/wmadec.c Tue Mar 09 23:37:45 2010 +0000 @@ -791,18 +791,18 @@ n = s->frame_len; incr = s->nb_channels; if (s->dsp.float_to_int16_interleave == ff_float_to_int16_interleave_c) { - for(ch = 0; ch < s->nb_channels; ch++) { - ptr = samples + ch; - iptr = s->frame_out[ch]; + for(ch = 0; ch < s->nb_channels; ch++) { + ptr = samples + ch; + iptr = s->frame_out[ch]; - for(i=0;iframe_out[ch][0], &s->frame_out[ch][s->frame_len], + s->frame_len * sizeof(float)); } - /* prepare for next block */ - memmove(&s->frame_out[ch][0], &s->frame_out[ch][s->frame_len], - s->frame_len * sizeof(float)); - } } else { float *output[MAX_CHANNELS]; for (ch = 0; ch < MAX_CHANNELS; ch++)