aboutsummaryrefslogtreecommitdiff
path: root/graphics/video
diff options
context:
space:
mode:
authorMax Horn2009-11-24 22:08:34 +0000
committerMax Horn2009-11-24 22:08:34 +0000
commit0d9609f7f9515a46a0c2c2dbe446b5c5d63cda75 (patch)
treecb2809331c69de6b6d45dffa41dadc76f067ea02 /graphics/video
parentbfc553081c5523ccc5ca0c30178decb374c26fbc (diff)
downloadscummvm-rg350-0d9609f7f9515a46a0c2c2dbe446b5c5d63cda75.tar.gz
scummvm-rg350-0d9609f7f9515a46a0c2c2dbe446b5c5d63cda75.tar.bz2
scummvm-rg350-0d9609f7f9515a46a0c2c2dbe446b5c5d63cda75.zip
Fix incorrectly placed doxygen comments; replace Common::ID2string by Common::tag2string
svn-id: r46127
Diffstat (limited to 'graphics/video')
-rw-r--r--graphics/video/dxa_decoder.h15
-rw-r--r--graphics/video/flic_decoder.h11
-rw-r--r--graphics/video/smk_decoder.h26
3 files changed, 26 insertions, 26 deletions
diff --git a/graphics/video/dxa_decoder.h b/graphics/video/dxa_decoder.h
index 384a057c3f..3edcc75ca9 100644
--- a/graphics/video/dxa_decoder.h
+++ b/graphics/video/dxa_decoder.h
@@ -23,13 +23,6 @@
*
*/
-/**
- * Video decoder used in engines:
- * - agos
- * - sword1
- * - sword2
- */
-
#ifndef GRAPHICS_VIDEO_DXA_PLAYER_H
#define GRAPHICS_VIDEO_DXA_PLAYER_H
@@ -37,6 +30,14 @@
namespace Graphics {
+/**
+ * Decoder for DXA videos.
+ *
+ * Video decoder used in engines:
+ * - agos
+ * - sword1
+ * - sword2
+ */
class DXADecoder : public VideoDecoder {
public:
DXADecoder();
diff --git a/graphics/video/flic_decoder.h b/graphics/video/flic_decoder.h
index 68bf3fb688..dcfc7a0c34 100644
--- a/graphics/video/flic_decoder.h
+++ b/graphics/video/flic_decoder.h
@@ -23,11 +23,6 @@
*
*/
-/**
- * Video decoder used in engines:
- * - tucker
- */
-
#ifndef GRAPHICS_VIDEO_FlicDecoder_H
#define GRAPHICS_VIDEO_FlicDecoder_H
@@ -41,6 +36,12 @@ namespace Common {
namespace Graphics {
+/**
+ *
+ * Decoder for DXA videos.
+ * Video decoder used in engines:
+ * - tucker
+ */
class FlicDecoder : public VideoDecoder {
public:
FlicDecoder();
diff --git a/graphics/video/smk_decoder.h b/graphics/video/smk_decoder.h
index e28d85119d..13d0c9d9ff 100644
--- a/graphics/video/smk_decoder.h
+++ b/graphics/video/smk_decoder.h
@@ -23,19 +23,6 @@
*
*/
-/**
- * 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
-
#ifndef GRAPHICS_VIDEO_SMK_PLAYER_H
#define GRAPHICS_VIDEO_SMK_PLAYER_H
@@ -51,7 +38,18 @@ namespace Graphics {
class BigHuffmanTree;
/**
- * Implementation of a Smacker v2/v4 video decoder
+ * Decoder for Smacker v2/v4 videos.
+ *
+ * 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
+ *
+ * Video decoder used in engines:
+ * - agos
+ * - saga
+ * - scumm (he)
+ * - sword1
+ * - sword2
*/
class SmackerDecoder : public VideoDecoder {
public: