mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-28 12:32:17 +02:00
Fix indentation after r22414.
Originally committed as revision 22415 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d00261a34b
commit
2cbc1ec676
@ -791,18 +791,18 @@ static int wma_decode_frame(WMACodecContext *s, int16_t *samples)
|
|||||||
n = s->frame_len;
|
n = s->frame_len;
|
||||||
incr = s->nb_channels;
|
incr = s->nb_channels;
|
||||||
if (s->dsp.float_to_int16_interleave == ff_float_to_int16_interleave_c) {
|
if (s->dsp.float_to_int16_interleave == ff_float_to_int16_interleave_c) {
|
||||||
for(ch = 0; ch < s->nb_channels; ch++) {
|
for(ch = 0; ch < s->nb_channels; ch++) {
|
||||||
ptr = samples + ch;
|
ptr = samples + ch;
|
||||||
iptr = s->frame_out[ch];
|
iptr = s->frame_out[ch];
|
||||||
|
|
||||||
for(i=0;i<n;i++) {
|
for(i=0;i<n;i++) {
|
||||||
*ptr = av_clip_int16(lrintf(*iptr++));
|
*ptr = av_clip_int16(lrintf(*iptr++));
|
||||||
ptr += incr;
|
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 {
|
} else {
|
||||||
float *output[MAX_CHANNELS];
|
float *output[MAX_CHANNELS];
|
||||||
for (ch = 0; ch < MAX_CHANNELS; ch++)
|
for (ch = 0; ch < MAX_CHANNELS; ch++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user