From: Felix Domke Date: Mon, 17 Nov 2008 14:36:45 +0000 (+0100) Subject: a few more debugging to debug the pvr state stuff X-Git-Tag: 2.6.0~350^2~25 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/588010098dbcc24b82ea736feec6b6056cffd2e3 a few more debugging to debug the pvr state stuff --- diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp index 954a3964..a873576d 100644 --- a/lib/service/servicedvb.cpp +++ b/lib/service/servicedvb.cpp @@ -1286,6 +1286,7 @@ RESULT eDVBServicePlay::pause(ePtr &ptr) RESULT eDVBServicePlay::setSlowMotion(int ratio) { + eDebug("eDVBServicePlay::setSlowMotion(%d)", ratio); if (m_decoder) return m_decoder->setSlowMotion(ratio); else @@ -1294,6 +1295,7 @@ RESULT eDVBServicePlay::setSlowMotion(int ratio) RESULT eDVBServicePlay::setFastForward(int ratio) { + eDebug("eDVBServicePlay::setFastForward(%d)", ratio); int skipmode, ffratio; if (ratio > 8) @@ -1354,6 +1356,7 @@ RESULT eDVBServicePlay::getLength(pts_t &len) RESULT eDVBServicePlay::pause() { + eDebug("eDVBServicePlay::pause"); if (!m_is_paused && m_decoder) { m_is_paused = 1; @@ -1364,6 +1367,7 @@ RESULT eDVBServicePlay::pause() RESULT eDVBServicePlay::unpause() { + eDebug("eDVBServicePlay::unpause"); if (m_is_paused && m_decoder) { m_is_paused = 0;