add slowmotion / fast forward
[enigma2.git] / lib / service / servicedvb.h
index 31eee1feff173bf6e34a23fc655783fa441cc1c5..6b93469dc837cbf15a0b77ea2fb51c11e775bf22 100644 (file)
@@ -54,7 +54,8 @@ private:
 
 class eDVBServicePlay: public iPlayableService, public iPauseableService, 
                public iSeekableService, public Object, public iServiceInformation, 
-               public iAudioTrackSelection
+               public iAudioTrackSelection, public iFrontendStatusInformation,
+               public iSubserviceList
 {
 DECLARE_REF(eDVBServicePlay);
 public:
@@ -68,11 +69,15 @@ public:
        RESULT pause(ePtr<iPauseableService> &ptr);
        RESULT info(ePtr<iServiceInformation> &ptr);
        RESULT audioTracks(ePtr<iAudioTrackSelection> &ptr);
-       
+       RESULT frontendStatusInfo(ePtr<iFrontendStatusInformation> &ptr);
+       RESULT subServices(ePtr<iSubserviceList> &ptr);
+
                // iPauseableService
        RESULT pause();
        RESULT unpause();
-       
+       RESULT setSlowMotion(int ratio);
+       RESULT setFastForward(int ratio);
+       
                // iSeekableService
        RESULT getLength(pts_t &len);
        RESULT seekTo(pts_t to);
@@ -82,12 +87,21 @@ public:
                // iServiceInformation
        RESULT getName(std::string &name);
        RESULT getEvent(ePtr<eServiceEvent> &evt, int nownext);
+       int getInfo(int w);
+       std::string getInfoString(int w);
 
                // iAudioTrackSelection 
        int getNumberOfTracks();
        RESULT selectTrack(unsigned int i);
        RESULT getTrackInfo(struct iAudioTrackInfo &, unsigned int n);
 
+               // iFrontendStatusInformation
+       int getFrontendInfo(int w);
+
+               // iSubserviceList
+       int getNumberOfSubservices();
+       RESULT getSubservice(eServiceReference &subservice, unsigned int n);
+
 private:
        friend class eServiceFactoryDVB;
        eServiceReference m_reference;
@@ -107,6 +121,9 @@ private:
        Signal2<void,iPlayableService*,int> m_event;
        
        int m_is_pvr, m_is_paused;
+       
+       int m_current_audio_stream;
+       int selectAudioStream(int n);
 };
 
 #endif