Cosmetics: Reindent Sierra vmd demuxer after last commit.

pull/18/head
Carl Eugen Hoyos 12 years ago
parent 4ec509ce3d
commit 7c23922c2b
  1. 5
      libavformat/sierravmd.c

@ -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)

Loading…
Cancel
Save