Commit ad434710 authored by kostya's avatar kostya

Fix a typo that made VMD demuxer always assume Indeo 3 as video codec.

Spotted by Robert Swain


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16371 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 82d5cf00
......@@ -95,7 +95,7 @@ static int vmd_read_header(AVFormatContext *s,
if(vmd->vmd_header[16] == 'i' && vmd->vmd_header[17] == 'v' && vmd->vmd_header[18] == '3')
vmd->is_indeo3 = 1;
else
vmd->is_indeo3 = 1;
vmd->is_indeo3 = 0;
/* start up the decoders */
vst = av_new_stream(s, 0);
if (!vst)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment