summaryrefslogtreecommitdiff
path: root/libavcodec/wmadec.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-03-09 23:37:45 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-03-09 23:37:45 +0000
commit2cbc1ec67666eaddfe5f48c029857137d630d60e (patch)
tree1f46798c1876a8ff67ba092ed1f1260db3557cb2 /libavcodec/wmadec.c
parentd00261a34bec5ea302e966882db6d0512373fcfa (diff)
Fix indentation after r22414.
Originally committed as revision 22415 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r--libavcodec/wmadec.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c
index 3a08fe386c..74583abe58 100644
--- a/libavcodec/wmadec.c
+++ b/libavcodec/wmadec.c
@@ -791,18 +791,18 @@ static int wma_decode_frame(WMACodecContext *s, int16_t *samples)
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;i<n;i++) {
- *ptr = av_clip_int16(lrintf(*iptr++));
- ptr += incr;
+ for(i=0;i<n;i++) {
+ *ptr = av_clip_int16(lrintf(*iptr++));
+ ptr += incr;
+ }
+ /* prepare for next block */
+ memmove(&s->frame_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++)