]> git.tdb.fi Git - libs/al.git/commitdiff
Improve documentation of SoundDecoder
authorMikko Rasa <tdb@tdb.fi>
Sun, 24 Jun 2018 14:47:45 +0000 (17:47 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sun, 24 Jun 2018 14:47:45 +0000 (17:47 +0300)
source/mp3decoder.h
source/oggdecoder.h
source/sounddecoder.h

index 201d68f26e789f174041b08b3e0c97e2c8d0f1e2..01fba634de283196b860d8b2ea4f83db55f71652 100644 (file)
@@ -18,6 +18,10 @@ private:
 };
 
 
+/**
+Decoder for MPEG-2 audio files, a.k.a. MP2 and MP3 files.  Normally you should
+use one of the SoundDecoder::open_* functions to create a decoder.
+*/
 class Mp3Decoder: public SoundDecoder
 {
 private:
index 3bf33b8bec32b8440ce0feef9df96afd9039d129..e194736a40207a09710fccec8ce37a72d4b512cc 100644 (file)
@@ -18,6 +18,10 @@ private:
 };
 
 
+/**
+Decoder for Ogg Vorbis files.  Normally you should use one of the
+SoundDecoder::open_* functions to create a decoder.
+*/
 class OggDecoder: public SoundDecoder
 {
 private:
index 37fddac2ee34c8881163c30a875d451c7429d473..20b9d0fb7f4e3d6afa4bd2d9a3dc8806e5477c5e 100644 (file)
@@ -17,8 +17,7 @@ public:
 
 
 /**
-This class facilitates loading sound files.  Currently only Ogg Vorbis is
-supported.
+Base class for sound decoders.
 */
 class SoundDecoder
 {
@@ -34,16 +33,29 @@ protected:
 public:
        virtual ~SoundDecoder();
 
+       /** Opens a file and creates a decoder of an appropriate type for it. */
        static SoundDecoder *open_file(const std::string &);
+
+       /** Creates a decoder for an already-opened audio file. */
        static SoundDecoder *open_io(IO::Seekable &);
 
+       /** Restarts decoding from the beginning of the file. */
        virtual void rewind() { seek(0); }
+
+       /** Sets decoding position expressed in PCM bytes.  This may involve seeking
+       to the beginning and skipping until the desired position is reached.*/
        virtual void seek(unsigned) = 0;
+
+       /** Reads decoded sound data.  Length is specified in bytes. */
        virtual unsigned read(char *, unsigned) = 0;
+
        bool eof() const { return eof_flag; }
 
        Format get_format() const { return format; }
        unsigned get_frequency() const { return freq; }
+
+       /** Returns the total length of the sound data in bytes.  Some decoders may
+       not be able to provide this information. */
        unsigned get_size() const { return size; }
 };