summaryrefslogtreecommitdiff
path: root/libavformat/sierravmd.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2008-12-28 16:22:42 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2008-12-28 16:22:42 +0000
commit5b3658f73bbcad82b06d40f1965fab9db2446890 (patch)
tree38003154b15859577a87fb284be1fa18b9db36a8 /libavformat/sierravmd.c
parent5d91e9285339acaea7daf9e76932d5237cc771df (diff)
Fix a typo that made VMD demuxer always assume Indeo 3 as video codec.
Spotted by Robert Swain Originally committed as revision 16371 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/sierravmd.c')
-rw-r--r--libavformat/sierravmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sierravmd.c b/libavformat/sierravmd.c
index c3d058bf49..1e15a228c0 100644
--- a/libavformat/sierravmd.c
+++ b/libavformat/sierravmd.c
@@ -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)