aboutsummaryrefslogtreecommitdiff
path: root/graphics/video
diff options
context:
space:
mode:
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: