aboutsummaryrefslogtreecommitdiff
path: root/lib/service/servicedvb.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-06-27 20:11:13 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-06-27 20:11:13 +0000
commit640a60618e00639f02c546f021ba67c454a49428 (patch)
tree6698b9ba64b33d8361c7d7813177ba8fb5967ff0 /lib/service/servicedvb.cpp
parentd6aaba4ddb2053bc56b1ff9e52bb227fc88c1ac1 (diff)
downloadenigma2-640a60618e00639f02c546f021ba67c454a49428.tar.gz
enigma2-640a60618e00639f02c546f021ba67c454a49428.zip
rewrite ServiceEventTracker and PerServiceBase service event handle code
Diffstat (limited to 'lib/service/servicedvb.cpp')
-rw-r--r--lib/service/servicedvb.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp
index 307c317f..f13ae50e 100644
--- a/lib/service/servicedvb.cpp
+++ b/lib/service/servicedvb.cpp
@@ -939,6 +939,8 @@ RESULT eDVBServiceList::setListName(const std::string &name)
return m_bouquet->setListName(name);
}
+timespec service_start;
+
RESULT eServiceFactoryDVB::play(const eServiceReference &ref, ePtr<iPlayableService> &ptr)
{
ePtr<eDVBService> service;
@@ -946,6 +948,7 @@ RESULT eServiceFactoryDVB::play(const eServiceReference &ref, ePtr<iPlayableServ
if (r)
service = 0;
// check resources...
+ clock_gettime(CLOCK_MONOTONIC, &service_start);
ptr = new eDVBServicePlay(ref, service);
return 0;
}