mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-07 23:32:33 +00:00
cosmetics: reindent after previous commit
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
762b386e4a
commit
ba9516cca8
@ -486,15 +486,15 @@ static int vmdaudio_loadsound(VmdAudioContext *s, unsigned char *data,
|
||||
memset(data, 0, silent_size);
|
||||
data += silent_size;
|
||||
}
|
||||
if (s->bits == 16)
|
||||
vmdaudio_decode_audio(s, data, buf, data_size, s->channels == 2);
|
||||
else {
|
||||
/* copy the data but convert it to signed */
|
||||
for (i = 0; i < data_size; i++){
|
||||
*data++ = buf[i] + 0x80;
|
||||
*data++ = buf[i] + 0x80;
|
||||
}
|
||||
if (s->bits == 16)
|
||||
vmdaudio_decode_audio(s, data, buf, data_size, s->channels == 2);
|
||||
else {
|
||||
/* copy the data but convert it to signed */
|
||||
for (i = 0; i < data_size; i++){
|
||||
*data++ = buf[i] + 0x80;
|
||||
*data++ = buf[i] + 0x80;
|
||||
}
|
||||
}
|
||||
|
||||
return silent_size + data_size * 2;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user