From Brad Colbert, get/setVolume methods

This commit is contained in:
Robert Osfield
2007-06-28 20:56:56 +00:00
parent 15ff70d298
commit 7d2efa886d

View File

@@ -130,6 +130,16 @@ void QuicktimeImageStream::quit(bool wiatForThreadToExit)
}
}
void QuicktimeImageStream::setVolume(float volume)
{
_movieData->setVolume(volume);
}
// Get and Set the playback volume of the stream.
float QuicktimeImageStream::getVolume() const
{
return _movieData->getVolume();
}
void QuicktimeImageStream::run()
{