Update of /cvsroot/gcblue/gcb_wx/include/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2912/include/common
Modified Files:
tcOggStreamer.h
Log Message:
Index: tcOggStreamer.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcOggStreamer.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** tcOggStreamer.h 24 Feb 2005 22:19:13 -0000 1.8
--- tcOggStreamer.h 15 Mar 2005 00:36:23 -0000 1.9
***************
*** 48,61 ****
bool IsPaused();
bool IsPlaying();
! bool IsSongQueued() {return queuedSong.size() > 1;}
bool IsStopped();
float GetVolume() const {return volume;}
! void Open(std::string path);
! bool Play();
! void Queue(std::string path);
void Seek(double seekTime);
void SetPause(bool state) {paused = state;}
void SetVolume(float vol);
void Stop();
tcOggStreamer();
--- 48,62 ----
bool IsPaused();
bool IsPlaying();
! bool IsSongQueued() {return queuedSong.size() > 0;}
bool IsStopped();
float GetVolume() const {return volume;}
! void Open(const std::string& path);
! void Play();
! void Queue(const std::string& path);
void Seek(double seekTime);
void SetPause(bool state) {paused = state;}
void SetVolume(float vol);
void Stop();
+ void Update();
tcOggStreamer();
***************
*** 69,72 ****
--- 70,74 ----
std::string queuedSong; ///< complete file path of song to queue
bool paused;
+ bool initializingStream; ///< true when stream is initializing, cleared once playing
};
|