mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 19:51:49 +00:00
COMMON: Update class documentation to say they're now used by SCUMM
This commit is contained in:
parent
c4d3a86010
commit
e6171fbb74
@ -31,7 +31,12 @@ namespace Common {
|
|||||||
|
|
||||||
class SeekableReadStream;
|
class SeekableReadStream;
|
||||||
|
|
||||||
/** A bit stream. */
|
/**
|
||||||
|
* A bit stream.
|
||||||
|
*
|
||||||
|
* Used in engines:
|
||||||
|
* - scumm
|
||||||
|
*/
|
||||||
class BitStream {
|
class BitStream {
|
||||||
public:
|
public:
|
||||||
BitStream();
|
BitStream();
|
||||||
|
@ -35,7 +35,12 @@
|
|||||||
|
|
||||||
namespace Common {
|
namespace Common {
|
||||||
|
|
||||||
/** (Inverse) Discrete Cosine Transforms. */
|
/**
|
||||||
|
* (Inverse) Discrete Cosine Transforms.
|
||||||
|
*
|
||||||
|
* Used in engines:
|
||||||
|
* - scumm
|
||||||
|
*/
|
||||||
class DCT {
|
class DCT {
|
||||||
public:
|
public:
|
||||||
enum TransformType {
|
enum TransformType {
|
||||||
|
@ -34,7 +34,12 @@
|
|||||||
|
|
||||||
namespace Common {
|
namespace Common {
|
||||||
|
|
||||||
/** (Inverse) Fast Fourier Transform. */
|
/**
|
||||||
|
* (Inverse) Fast Fourier Transform.
|
||||||
|
*
|
||||||
|
* Used in engines:
|
||||||
|
* - scumm
|
||||||
|
*/
|
||||||
class FFT {
|
class FFT {
|
||||||
public:
|
public:
|
||||||
FFT(int bits, int inverse);
|
FFT(int bits, int inverse);
|
||||||
|
@ -33,7 +33,12 @@ namespace Common {
|
|||||||
|
|
||||||
class BitStream;
|
class BitStream;
|
||||||
|
|
||||||
/** Decode a Huffman'd bitstream. */
|
/**
|
||||||
|
* Huffman bitstream decoding
|
||||||
|
*
|
||||||
|
* Used in engines:
|
||||||
|
* - scumm
|
||||||
|
*/
|
||||||
class Huffman {
|
class Huffman {
|
||||||
public:
|
public:
|
||||||
/** Construct a Huffman decoder.
|
/** Construct a Huffman decoder.
|
||||||
|
@ -33,7 +33,13 @@
|
|||||||
|
|
||||||
namespace Common {
|
namespace Common {
|
||||||
|
|
||||||
/** (Inverse) Real Discrete Fourier Transform. */
|
/**
|
||||||
|
* (Inverse) Real Discrete Fourier Transform.
|
||||||
|
*
|
||||||
|
* Used in engines:
|
||||||
|
* - scumm
|
||||||
|
*/
|
||||||
|
|
||||||
class RDFT {
|
class RDFT {
|
||||||
public:
|
public:
|
||||||
enum TransformType {
|
enum TransformType {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user