diff options
author | Eugene Sandulenko | 2009-03-08 15:57:59 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2009-03-08 15:57:59 +0000 |
commit | ef1e3ebc3c4d173704ca76cc82f0e3a09a84db86 (patch) | |
tree | afd1fec2277fc8cdab36bcb5b4e2982620c64d0c /graphics | |
parent | 44f479c82ead58dafbf1de4d3ab437e28cec3a86 (diff) | |
download | scummvm-rg350-ef1e3ebc3c4d173704ca76cc82f0e3a09a84db86.tar.gz scummvm-rg350-ef1e3ebc3c4d173704ca76cc82f0e3a09a84db86.tar.bz2 scummvm-rg350-ef1e3ebc3c4d173704ca76cc82f0e3a09a84db86.zip |
Patch #2658710: "Add comments to specify which engines use which decoders"
svn-id: r39236
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/iff.h | 5 | ||||
-rw-r--r-- | graphics/video/dxa_player.h | 7 | ||||
-rw-r--r-- | graphics/video/flic_player.h | 5 | ||||
-rw-r--r-- | graphics/video/smk_player.h | 9 |
4 files changed, 26 insertions, 0 deletions
diff --git a/graphics/iff.h b/graphics/iff.h index 1bda15c9d7..77674d35f3 100644 --- a/graphics/iff.h +++ b/graphics/iff.h @@ -22,6 +22,11 @@ * $Id$ */ +/** + * Bitmap decoder used in engines: + * - parallaction + * - saga + */ #ifndef GRAPHICS_IFF_H #define GRAPHICS_IFF_H diff --git a/graphics/video/dxa_player.h b/graphics/video/dxa_player.h index 78825dc6f1..35ce86f181 100644 --- a/graphics/video/dxa_player.h +++ b/graphics/video/dxa_player.h @@ -23,6 +23,13 @@ * */ +/** + * Video decoder used in engines: + * - agos + * - sword1 + * - sword2 + */ + #ifndef GRAPHICS_VIDEO_DXA_PLAYER_H #define GRAPHICS_VIDEO_DXA_PLAYER_H diff --git a/graphics/video/flic_player.h b/graphics/video/flic_player.h index 40aa0f4fdf..f2a60811c9 100644 --- a/graphics/video/flic_player.h +++ b/graphics/video/flic_player.h @@ -23,6 +23,11 @@ * */ +/** + * Video decoder used in engines: + * - tucker + */ + #ifndef GRAPHICS_VIDEO_FLICPLAYER_H #define GRAPHICS_VIDEO_FLICPLAYER_H diff --git a/graphics/video/smk_player.h b/graphics/video/smk_player.h index 6e7e0e88a9..d4c6050a5d 100644 --- a/graphics/video/smk_player.h +++ b/graphics/video/smk_player.h @@ -23,6 +23,15 @@ * */ +/** + * Video decoder used in engines: + * - agos + * - saga + * - scumm (he) + * - sword1 + * - sword2 + */ + // Based on http://wiki.multimedia.cx/index.php?title=Smacker // and the FFmpeg Smacker decoder (libavcodec/smacker.c), revision 16143 // http://svn.ffmpeg.org/ffmpeg/trunk/libavcodec/smacker.c?revision=16143&view=markup |