increase buffer for comi smush audio track, that fixes bug #1479721

svn-id: r22702
This commit is contained in:
Paweł Kołodziejski 2006-05-28 06:04:46 +00:00
parent 3a1dec3ad1
commit ea05e31330

View File

@ -524,7 +524,7 @@ void SmushPlayer::handleIACT(Chunk &b) {
} while (--count);
if (!_IACTstream) {
_IACTstream = Audio::makeAppendableAudioStream(22050, Audio::Mixer::FLAG_STEREO | Audio::Mixer::FLAG_16BITS, 400000);
_IACTstream = Audio::makeAppendableAudioStream(22050, Audio::Mixer::FLAG_STEREO | Audio::Mixer::FLAG_16BITS, 900000);
_vm->_mixer->playInputStream(Audio::Mixer::kSFXSoundType, &_IACTchannel, _IACTstream);
}
_IACTstream->append(output_data, 0x1000);