From 474d49946f5254bff7ac6a490fcc3b02655fae23 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 8 Jan 2010 22:06:04 +0000 Subject: Rename QueuedAudioStream to QueuingAudioStream svn-id: r47179 --- engines/mohawk/video/qt_player.cpp | 4 ++-- engines/mohawk/video/qt_player.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/mohawk/video') 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; -- cgit v1.2.3