1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-08 02:26:26 +02:00

cosmetics: reindent after previous commit

Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
Justin Ruggles 2011-02-23 13:11:00 -05:00 committed by Ronald S. Bultje
parent 2d213695fc
commit 868f2f4d90

View File

@ -484,19 +484,19 @@ static int vmdaudio_loadsound(VmdAudioContext *s, unsigned char *data,
// if (silence) // if (silence)
// av_log(s->avctx, AV_LOG_INFO, "silent block!\n"); // av_log(s->avctx, AV_LOG_INFO, "silent block!\n");
if (silence) { if (silence) {
memset(data, 0, data_size * 2); memset(data, 0, data_size * 2);
} else { } else {
if (s->bits == 16) if (s->bits == 16)
vmdaudio_decode_audio(s, data, buf, data_size, s->channels == 2); vmdaudio_decode_audio(s, data, buf, data_size, s->channels == 2);
else { else {
/* copy the data but convert it to signed */ /* copy the data but convert it to signed */
for (i = 0; i < data_size; i++){ for (i = 0; i < data_size; i++){
*data++ = buf[i] + 0x80; *data++ = buf[i] + 0x80;
*data++ = buf[i] + 0x80; *data++ = buf[i] + 0x80;
}
} }
} }
}
return data_size * 2; return data_size * 2;
} }