|
|
@ -63,7 +63,9 @@ void CStreamFileSource::play()
|
|
|
|
// note: CStreamSource will assert crash if already physically playing!
|
|
|
|
// note: CStreamSource will assert crash if already physically playing!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (m_Thread->isRunning() && m_WaitingForPlay)
|
|
|
|
if (m_WaitingForPlay)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (m_Thread->isRunning())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (m_NextBuffer || !m_FreeBuffers)
|
|
|
|
if (m_NextBuffer || !m_FreeBuffers)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -82,20 +84,32 @@ void CStreamFileSource::play()
|
|
|
|
mixer->addSourceWaitingForPlay(this);
|
|
|
|
mixer->addSourceWaitingForPlay(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// thread went kaboom while not started playing yet, probably the audiodecoder cannot be started
|
|
|
|
|
|
|
|
// don't play
|
|
|
|
|
|
|
|
m_WaitingForPlay = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (!_Playing)
|
|
|
|
else if (!_Playing)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
nldebug("play go %s", getStreamFileSound()->getFilePath().c_str());
|
|
|
|
nldebug("play go %s", getStreamFileSound()->getFilePath().c_str());
|
|
|
|
if (!m_WaitingForPlay)
|
|
|
|
//if (!m_WaitingForPlay)
|
|
|
|
{
|
|
|
|
//{
|
|
|
|
// thread may be stopping from stop call
|
|
|
|
// thread may be stopping from stop call
|
|
|
|
m_Thread->wait();
|
|
|
|
m_Thread->wait();
|
|
|
|
}
|
|
|
|
//}
|
|
|
|
else
|
|
|
|
//else
|
|
|
|
|
|
|
|
//{
|
|
|
|
|
|
|
|
// nlwarning("Already waiting for play");
|
|
|
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
if (!getStreamFileSound()->getAsync())
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!prepareDecoder())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
nlwarning("Already waiting for play");
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!getStreamFileSound()->getAsync())
|
|
|
|
|
|
|
|
prepareDecoder();
|
|
|
|
|
|
|
|
// else load audiodecoder in thread
|
|
|
|
// else load audiodecoder in thread
|
|
|
|
m_WaitingForPlay = true;
|
|
|
|
m_WaitingForPlay = true;
|
|
|
|
m_Thread->start();
|
|
|
|
m_Thread->start();
|
|
|
@ -221,7 +235,7 @@ bool CStreamFileSource::isLoadingAsync()
|
|
|
|
return m_WaitingForPlay;
|
|
|
|
return m_WaitingForPlay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CStreamFileSource::prepareDecoder()
|
|
|
|
bool CStreamFileSource::prepareDecoder()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
// creates a new decoder or keeps going with the current decoder if the stream was paused
|
|
|
|
// creates a new decoder or keeps going with the current decoder if the stream was paused
|
|
|
|
|
|
|
|
|
|
|
@ -243,13 +257,15 @@ void CStreamFileSource::prepareDecoder()
|
|
|
|
if (!m_AudioDecoder)
|
|
|
|
if (!m_AudioDecoder)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
nlwarning("Failed to create IAudioDecoder, likely invalid format");
|
|
|
|
nlwarning("Failed to create IAudioDecoder, likely invalid format");
|
|
|
|
return;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this->setFormat(m_AudioDecoder->getChannels(), m_AudioDecoder->getBitsPerSample(), (uint32)m_AudioDecoder->getSamplesPerSec());
|
|
|
|
this->setFormat(m_AudioDecoder->getChannels(), m_AudioDecoder->getBitsPerSample(), (uint32)m_AudioDecoder->getSamplesPerSec());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
uint samples, bytes;
|
|
|
|
uint samples, bytes;
|
|
|
|
this->getRecommendedBufferSize(samples, bytes);
|
|
|
|
this->getRecommendedBufferSize(samples, bytes);
|
|
|
|
this->preAllocate(bytes * 2);
|
|
|
|
this->preAllocate(bytes * 2);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool CStreamFileSource::bufferMore(uint bytes) // buffer from bytes (minimum) to bytes * 2 (maximum)
|
|
|
|
inline bool CStreamFileSource::bufferMore(uint bytes) // buffer from bytes (minimum) to bytes * 2 (maximum)
|
|
|
@ -271,7 +287,10 @@ void CStreamFileSource::run()
|
|
|
|
|
|
|
|
|
|
|
|
bool looping = _Looping;
|
|
|
|
bool looping = _Looping;
|
|
|
|
if (getStreamFileSound()->getAsync())
|
|
|
|
if (getStreamFileSound()->getAsync())
|
|
|
|
prepareDecoder();
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!prepareDecoder())
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
uint samples, bytes;
|
|
|
|
uint samples, bytes;
|
|
|
|
this->getRecommendedBufferSize(samples, bytes);
|
|
|
|
this->getRecommendedBufferSize(samples, bytes);
|
|
|
|
uint32 recSleep = 40;
|
|
|
|
uint32 recSleep = 40;
|
|
|
|