aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/videoplayer.cpp
diff options
context:
space:
mode:
authorSven Hesse2010-08-08 00:56:04 +0000
committerSven Hesse2010-08-08 00:56:04 +0000
commit1f630094268a76fd73e7a1f01e725aef2aa61e8e (patch)
tree354311c1f225b52a046183780017f3737d37259e /engines/gob/videoplayer.cpp
parentbab55f3a1d8f24e959fa98bda3a775452cc14198 (diff)
downloadscummvm-rg350-1f630094268a76fd73e7a1f01e725aef2aa61e8e.tar.gz
scummvm-rg350-1f630094268a76fd73e7a1f01e725aef2aa61e8e.tar.bz2
scummvm-rg350-1f630094268a76fd73e7a1f01e725aef2aa61e8e.zip
VIDEO/GOB: Stubb VMDDecoder
svn-id: r51896
Diffstat (limited to 'engines/gob/videoplayer.cpp')
-rw-r--r--engines/gob/videoplayer.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/gob/videoplayer.cpp b/engines/gob/videoplayer.cpp
index 427130935e..2243468755 100644
--- a/engines/gob/videoplayer.cpp
+++ b/engines/gob/videoplayer.cpp
@@ -679,11 +679,9 @@ Graphics::CoktelDecoder *VideoPlayer::openVideo(const Common::String &file, Prop
else if (properties.type == kVideoTypePreIMD)
video = new Graphics::PreIMDDecoder(properties.width, properties.height, *_vm->_mixer, Audio::Mixer::kSFXSoundType);
else if (properties.type == kVideoTypeVMD)
- warning("TODO: VMD");
- //_video = new Graphics::Vmd(_vm->_video->_palLUT);
+ video = new Graphics::VMDDecoder(*_vm->_mixer, Audio::Mixer::kSFXSoundType);
else if (properties.type == kVideoTypeRMD)
- warning("TODO: RMD");
- //_video = new Graphics::Vmd(_vm->_video->_palLUT);
+ video = new Graphics::VMDDecoder(*_vm->_mixer, Audio::Mixer::kSFXSoundType);
else
warning("Couldn't open video \"%s\": Invalid video Type", fileName.c_str());