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

Don't spam the log if VLC detects total-time changed. This can happen a lot.

This commit is contained in:
Christian Muehlhaeuser
2015-04-13 08:24:19 +02:00
parent a2d290cab8
commit d86fdded4b

View File

@@ -321,7 +321,7 @@ AudioOutput::setCurrentTime( qint64 time )
m_currentTime = time;
emit tick( time );
// tDebug() << Q_FUNC_INFO << "Current time : " << m_currentTime << " / " << m_totalTime;
// tDebug() << Q_FUNC_INFO << "Current time:" << m_currentTime << "/" << m_totalTime;
// FIXME pt 2 : we use temporary variable to avoid overriding m_totalTime
// in the case it is < 0 (which means that the media is not seekable)
@@ -353,7 +353,7 @@ AudioOutput::totalTime() const
void
AudioOutput::setTotalTime( qint64 time )
{
tDebug() << Q_FUNC_INFO << time;
// tDebug() << Q_FUNC_INFO << time;
if ( time <= 0 )
{