aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-21 20:32:41 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-21 20:32:41 +0100
commit37b6491b12090e02c5a7ad9ea2d161c528c8788b (patch)
tree2b5d23124cfe74fd71d32cd95e1b5341bbf6b8ab /lib
parent3a65450f335f7b831cf8a01267fa43c6c19bfc58 (diff)
downloadenigma2-37b6491b12090e02c5a7ad9ea2d161c528c8788b.tar.gz
enigma2-37b6491b12090e02c5a7ad9ea2d161c528c8788b.zip
servicedvb.cpp: small cleanup
Diffstat (limited to 'lib')
-rw-r--r--lib/service/servicedvb.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp
index 77e2bd4e..e6af1e66 100644
--- a/lib/service/servicedvb.cpp
+++ b/lib/service/servicedvb.cpp
@@ -2300,6 +2300,7 @@ void eDVBServicePlay::switchToTimeshift()
void eDVBServicePlay::updateDecoder()
{
int vpid = -1, vpidtype = -1, pcrpid = -1, tpid = -1, achannel = -1, ac3_delay=-1, pcm_delay=-1;
+ bool mustPlay = false;
eDVBServicePMTHandler &h = m_timeshift_active ? m_service_handler_timeshift : m_service_handler;
@@ -2380,11 +2381,10 @@ void eDVBServicePlay::updateDecoder()
Py_DECREF(subs);
}
}
- m_decoder->play(); /* pids will be set later */
}
if (m_cue)
m_cue->setDecodingDemux(m_decode_demux, m_decoder);
- m_decoder->play(); /* pids will be set later. */
+ mustPlay = true;
}
m_timeshift_changed = 0;
@@ -2449,7 +2449,11 @@ void eDVBServicePlay::updateDecoder()
m_decoder->setRadioPic(radio_pic);
}
- m_decoder->set();
+ if (mustPlay)
+ m_decoder->play();
+ else
+ m_decoder->set();
+
m_decoder->setAudioChannel(achannel);
/* don't worry about non-existing services, nor pvr services */