diff options
author | Matthew Hoops | 2009-10-16 18:05:56 +0000 |
---|---|---|
committer | Matthew Hoops | 2009-10-16 18:05:56 +0000 |
commit | b43e99566ebad682d28e32fedae9606048284844 (patch) | |
tree | 116e99bd349f99227e0e9e1bcae602cf7f4705f5 /dists/msvc9 | |
parent | c957d75fd0e32f4a519d37e254c4a11378150064 (diff) | |
download | scummvm-rg350-b43e99566ebad682d28e32fedae9606048284844.tar.gz scummvm-rg350-b43e99566ebad682d28e32fedae9606048284844.tar.bz2 scummvm-rg350-b43e99566ebad682d28e32fedae9606048284844.zip |
Converting AVIPlayer into a class that inherits from VideoDecoder and adapt SCI to use this. Also, moving the codec and Codec class into their own folder. (Based on a patch by md5)
svn-id: r45170
Diffstat (limited to 'dists/msvc9')
-rw-r--r-- | dists/msvc9/scummvm.vcproj | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/dists/msvc9/scummvm.vcproj b/dists/msvc9/scummvm.vcproj index 41355c20cb..e0dd6cc9a7 100644 --- a/dists/msvc9/scummvm.vcproj +++ b/dists/msvc9/scummvm.vcproj @@ -453,20 +453,23 @@ <File RelativePath="..\..\graphics\fonts\scummfont.cpp" /> </Filter> <Filter Name="video"> - <File RelativePath="..\..\graphics\video\avi_player.cpp" /> - <File RelativePath="..\..\graphics\video\avi_player.h" /> + <File RelativePath="..\..\graphics\video\avi_decoder.cpp" /> + <File RelativePath="..\..\graphics\video\avi_decoder.h" /> <File RelativePath="..\..\graphics\video\dxa_decoder.cpp" /> <File RelativePath="..\..\graphics\video\dxa_decoder.h" /> <File RelativePath="..\..\graphics\video\flic_decoder.cpp" /> <File RelativePath="..\..\graphics\video\flic_decoder.h" /> <File RelativePath="..\..\graphics\video\mpeg_player.cpp" /> <File RelativePath="..\..\graphics\video\mpeg_player.h" /> - <File RelativePath="..\..\graphics\video\msvideo1.cpp" /> - <File RelativePath="..\..\graphics\video\msvideo1.h" /> <File RelativePath="..\..\graphics\video\smk_decoder.cpp" /> <File RelativePath="..\..\graphics\video\smk_decoder.h" /> <File RelativePath="..\..\graphics\video\video_player.cpp" /> <File RelativePath="..\..\graphics\video\video_player.h" /> + <Filter Name="codecs"> + <File RelativePath="..\..\graphics\video\codecs\codec.h" /> + <File RelativePath="..\..\graphics\video\codecs\msvideo1.cpp" /> + <File RelativePath="..\..\graphics\video\codecs\msvideo1.h" /> + </Filter> <Filter Name="coktelvideo"> <File RelativePath="..\..\graphics\video\coktelvideo\coktelvideo.cpp" /> <File RelativePath="..\..\graphics\video\coktelvideo\coktelvideo.h" /> |