Remove todo comment from DirectSoundPlayer, as the player was rewritten entirely instead (years ago)

Originally committed to SVN as r6606.
This commit is contained in:
Thomas Goyne 2012-03-25 04:05:51 +00:00
parent 7218c04d52
commit 52b1a74f12

View file

@ -68,21 +68,6 @@ public:
wxThread::ExitCode Entry();
};
/*
TODO: Rewrite playback thread to manage all of the buffer, and properly marshal the IDirectSound8
object into the thread for creating the buffer there.
The thread should own the buffer and manage all of the playback.
It must be created with start and duration set, and begins playback at the given position.
New functions:
* Seek(pos) : Restart playback from the given position
* SetEnd(pos) : Set new end point
* GetPosition() : Get the current sample number being played
* Stop() : Stop playback immediately
Instead of using a stop event, use a playback parameters changed event. When that one's fired,
detect which were actually changed and act accordingly.
All but GetPosition() set appropriate fields and then raise the parameters changed event.
*/
/// DOCME
/// @class DirectSoundPlayer