1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 08:34:34 +02:00

* More AudioEngine debug.

This commit is contained in:
Christian Muehlhaeuser
2011-05-30 06:18:20 +02:00
parent 873fe1297a
commit af2553294f

View File

@@ -301,6 +301,12 @@ void
AudioEngine::onStateChanged( Phonon::State newState, Phonon::State oldState )
{
qDebug() << Q_FUNC_INFO << oldState << newState;
if ( newState == Phonon::ErrorState )
{
qDebug() << "Phonon Error:" << m_mediaObject->errorString() << m_mediaObject->errorType();
}
if ( oldState == Phonon::PlayingState && newState == Phonon::StoppedState )
{
if ( !m_expectStop )