COMMON: Update class documentation to say they're now used by SCUMM

This commit is contained in:
Matthew Hoops 2011-07-18 10:21:20 -04:00
parent c4d3a86010
commit e6171fbb74
5 changed files with 31 additions and 5 deletions

View File

@ -31,7 +31,12 @@ namespace Common {
class SeekableReadStream;
/** A bit stream. */
/**
* A bit stream.
*
* Used in engines:
* - scumm
*/
class BitStream {
public:
BitStream();

View File

@ -35,7 +35,12 @@
namespace Common {
/** (Inverse) Discrete Cosine Transforms. */
/**
* (Inverse) Discrete Cosine Transforms.
*
* Used in engines:
* - scumm
*/
class DCT {
public:
enum TransformType {

View File

@ -34,7 +34,12 @@
namespace Common {
/** (Inverse) Fast Fourier Transform. */
/**
* (Inverse) Fast Fourier Transform.
*
* Used in engines:
* - scumm
*/
class FFT {
public:
FFT(int bits, int inverse);

View File

@ -33,7 +33,12 @@ namespace Common {
class BitStream;
/** Decode a Huffman'd bitstream. */
/**
* Huffman bitstream decoding
*
* Used in engines:
* - scumm
*/
class Huffman {
public:
/** Construct a Huffman decoder.

View File

@ -33,7 +33,13 @@
namespace Common {
/** (Inverse) Real Discrete Fourier Transform. */
/**
* (Inverse) Real Discrete Fourier Transform.
*
* Used in engines:
* - scumm
*/
class RDFT {
public:
enum TransformType {