Module: ffmpeg Branch: master Commit: ba9516cca845f8d3fb7ac08ef53a996c3ee0dbf5
Author: Justin Ruggles <[email protected]> Committer: Ronald S. Bultje <[email protected]> Date: Wed Feb 23 13:11:09 2011 -0500 cosmetics: reindent after previous commit Signed-off-by: Ronald S. Bultje <[email protected]> --- libavcodec/vmdav.c | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libavcodec/vmdav.c b/libavcodec/vmdav.c index b3103ec..d0ffa39 100644 --- a/libavcodec/vmdav.c +++ b/libavcodec/vmdav.c @@ -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; } _______________________________________________ ffmpeg-commits mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-commits
