]> git.tdb.fi Git - libs/al.git/blobdiff - source/sound.h
Split Sound into SoundDecoder and Waveform parts
[libs/al.git] / source / sound.h
diff --git a/source/sound.h b/source/sound.h
deleted file mode 100644 (file)
index 60bdf45..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-#ifndef MSP_AL_SOUND_H_
-#define MSP_AL_SOUND_H_
-
-#include <string>
-#include <vorbis/vorbisfile.h>
-#include "format.h"
-
-namespace Msp {
-namespace AL {
-
-/**
-This class facilitates loading sound files.  Currently only Ogg Vorbis is
-supported.
-*/
-class Sound
-{
-private:
-       OggVorbis_File ovfile;
-       unsigned freq;
-       unsigned size;
-       char *data;
-       Format format;
-       unsigned read_pos;
-       bool eof_flag;
-
-public:
-       Sound();
-       ~Sound();
-
-       void open_file(const std::string &);
-       void open_memory(const void *, unsigned);
-private:
-       void open_common();
-public:
-       void load_data();
-       void load_file(const std::string &);
-       void load_memory(const void *, unsigned);
-       void close();
-       void rewind();
-       unsigned read(char *, unsigned);
-       bool eof() const { return eof_flag; }
-
-       Format get_format() const { return format; }
-       unsigned get_frequency() const { return freq; }
-       unsigned get_size() const { return size; }
-       const char *get_data() const;
-};
-
-} // namespace AL
-} // namespace Msp
-
-#endif