aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-11-17 15:36:45 +0100
committerFelix Domke <tmbinc@elitedvb.net>2008-11-17 15:36:45 +0100
commit588010098dbcc24b82ea736feec6b6056cffd2e3 (patch)
tree8928a20c69355566b59246a103863b80c9678d56 /lib
parent6c8fd4b0dc66959d22e2b3612f00076699664756 (diff)
downloadenigma2-588010098dbcc24b82ea736feec6b6056cffd2e3.tar.gz
enigma2-588010098dbcc24b82ea736feec6b6056cffd2e3.zip
a few more debugging to debug the pvr state stuff
Diffstat (limited to 'lib')
-rw-r--r--lib/service/servicedvb.cpp4
1 files changed, 4 insertions, 0 deletions
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<iPauseableService> &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;