From cd038ce28d53719a27e7009365dd74fec19357df Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Thu, 8 Dec 2005 00:35:27 +0000 Subject: add slowmotion / fast forward --- lib/service/servicedvb.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'lib/service/servicedvb.cpp') diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp index 307fb9f5..b3c15738 100644 --- a/lib/service/servicedvb.cpp +++ b/lib/service/servicedvb.cpp @@ -629,6 +629,22 @@ RESULT eDVBServicePlay::pause(ePtr &ptr) return -1; } +RESULT eDVBServicePlay::setSlowMotion(int ratio) +{ + if (m_decoder) + return m_decoder->setSlowMotion(ratio); + else + return -1; +} + +RESULT eDVBServicePlay::setFastForward(int ratio) +{ + if (m_decoder) + m_decoder->setFastForward(ratio); + else + return -1; +} + RESULT eDVBServicePlay::seek(ePtr &ptr) { if (m_is_pvr) -- cgit v1.2.3