Output error message in SoundStream when bits are zero

Fixes #529
This commit is contained in:
Jan Haller 2014-03-25 22:01:07 +01:00
parent 50e3052773
commit f9233e792b

View File

@ -85,7 +85,7 @@ void SoundStream::play()
// Check if the sound parameters have been set // Check if the sound parameters have been set
if (m_format == 0) if (m_format == 0)
{ {
err() << "Failed to play audio stream: sound parameters have not been initialized (call Initialize first)" << std::endl; err() << "Failed to play audio stream: sound parameters have not been initialized (call initialize() first)" << std::endl;
return; return;
} }
@ -258,8 +258,23 @@ void SoundStream::streamData()
ALint size, bits; ALint size, bits;
alCheck(alGetBufferi(buffer, AL_SIZE, &size)); alCheck(alGetBufferi(buffer, AL_SIZE, &size));
alCheck(alGetBufferi(buffer, AL_BITS, &bits)); alCheck(alGetBufferi(buffer, AL_BITS, &bits));
// Bits can be 0 if the format or parameters are corrupt, avoid division by zero
if (bits == 0)
{
err() << "Bits in sound stream are 0: make sure that the audio format is not corrupt "
<< "and initialize() has been called correctly" << std::endl;
// Abort streaming (exit main loop)
m_isStreaming = false;
requestStop = true;
break;
}
else
{
m_samplesProcessed += size / (bits / 8); m_samplesProcessed += size / (bits / 8);
} }
}
// Fill it and push it back into the playing queue // Fill it and push it back into the playing queue
if (!requestStop) if (!requestStop)