Cosmetics: Reindent Sierra vmd demuxer after last commit.

This commit is contained in:
Carl Eugen Hoyos 2013-05-05 19:56:46 +02:00
parent 4ec509ce3d
commit 7c23922c2b

View File

@ -106,10 +106,11 @@ static int vmd_read_header(AVFormatContext *s)
width = AV_RL16(&vmd->vmd_header[12]);
height = AV_RL16(&vmd->vmd_header[14]);
if (width && height) {
if(vmd->vmd_header[24] == 'i' && vmd->vmd_header[25] == 'v' && vmd->vmd_header[26] == '3')
if(vmd->vmd_header[24] == 'i' && vmd->vmd_header[25] == 'v' && vmd->vmd_header[26] == '3') {
vmd->is_indeo3 = 1;
else
} else {
vmd->is_indeo3 = 0;
}
/* start up the decoders */
vst = avformat_new_stream(s, NULL);
if (!vst)