]> git.tdb.fi Git - libs/al.git/blobdiff - source/jukebox.h
Split Sound into SoundDecoder and Waveform parts
[libs/al.git] / source / jukebox.h
index 13672953b9325861ce62ec2971a69fe95be1f3ed..fe17f2e4a58f456338eff200046f577e80f61498 100644 (file)
@@ -10,7 +10,7 @@
 namespace Msp {
 namespace AL {
 
-class Sound;
+class SoundDecoder;
 
 class Jukebox
 {
@@ -20,7 +20,7 @@ public:
 private:
        Source source;
        Streamer streamer;
-       Sound *sound;
+       SoundDecoder *decoder;
        std::list<std::string> tracks;
        std::list<std::string>::iterator current_track;
        bool shuffle;