aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/video
diff options
context:
space:
mode:
authorMax Horn2010-01-08 22:06:04 +0000
committerMax Horn2010-01-08 22:06:04 +0000
commit474d49946f5254bff7ac6a490fcc3b02655fae23 (patch)
tree127da7f0a99049771e33e60417359fafe9ee77d6 /engines/mohawk/video
parent7efba850648777d2d562bfccf2f14868816d6391 (diff)
downloadscummvm-rg350-474d49946f5254bff7ac6a490fcc3b02655fae23.tar.gz
scummvm-rg350-474d49946f5254bff7ac6a490fcc3b02655fae23.tar.bz2
scummvm-rg350-474d49946f5254bff7ac6a490fcc3b02655fae23.zip
Rename QueuedAudioStream to QueuingAudioStream
svn-id: r47179
Diffstat (limited to 'engines/mohawk/video')
-rw-r--r--engines/mohawk/video/qt_player.cpp4
-rw-r--r--engines/mohawk/video/qt_player.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/mohawk/video/qt_player.cpp b/engines/mohawk/video/qt_player.cpp
index d9d4a68dac..2f4c54abc4 100644
--- a/engines/mohawk/video/qt_player.cpp
+++ b/engines/mohawk/video/qt_player.cpp
@@ -148,7 +148,7 @@ void QTPlayer::reset() {
stopAudio();
if (_audioStreamIndex >= 0) {
_curAudioChunk = 0;
- _audStream = Audio::makeQueuedAudioStream(_streams[_audioStreamIndex]->sample_rate, _streams[_audioStreamIndex]->channels == 2);
+ _audStream = Audio::makeQueuingAudioStream(_streams[_audioStreamIndex]->sample_rate, _streams[_audioStreamIndex]->channels == 2);
}
startAudio();
}
@@ -304,7 +304,7 @@ bool QTPlayer::loadFile(Common::SeekableReadStream *stream) {
}
if (_audioStreamIndex >= 0 && checkAudioCodecSupport(_streams[_audioStreamIndex]->codec_tag)) {
- _audStream = Audio::makeQueuedAudioStream(_streams[_audioStreamIndex]->sample_rate, _streams[_audioStreamIndex]->channels == 2);
+ _audStream = Audio::makeQueuingAudioStream(_streams[_audioStreamIndex]->sample_rate, _streams[_audioStreamIndex]->channels == 2);
_curAudioChunk = 0;
// Make sure the bits per sample transfers to the sample size
diff --git a/engines/mohawk/video/qt_player.h b/engines/mohawk/video/qt_player.h
index 5ff27a57c5..2d8f87f479 100644
--- a/engines/mohawk/video/qt_player.h
+++ b/engines/mohawk/video/qt_player.h
@@ -246,7 +246,7 @@ protected:
void resetInternal();
uint32 getFrameDuration();
- Audio::QueuedAudioStream *_audStream;
+ Audio::QueuingAudioStream *_audStream;
int8 _videoStreamIndex;
int8 _audioStreamIndex;
uint _curAudioChunk;