fix for canAllocateChannel
[enigma2.git] / lib / service / servicedvb.h
index 31eee1feff173bf6e34a23fc655783fa441cc1c5..b1df4cb78169a60af637d39c2fcba9ea332c9080 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, public iTimeshiftService
 {
 DECLARE_REF(eDVBServicePlay);
 public:
@@ -68,26 +69,45 @@ 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);
+       RESULT timeshift(ePtr<iTimeshiftService> &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);
        RESULT seekRelative(int direction, pts_t to);
        RESULT getPlayPosition(pts_t &pos);
+       RESULT setTrickmode(int trick=0);
 
                // 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);
+
+               // iTimeshiftService
+       RESULT startTimeshift();
+       RESULT stopTimeshift();
+
 private:
        friend class eServiceFactoryDVB;
        eServiceReference m_reference;
@@ -106,7 +126,10 @@ private:
        void serviceEvent(int event);
        Signal2<void,iPlayableService*,int> m_event;
        
-       int m_is_pvr, m_is_paused;
+       int m_is_pvr, m_is_paused, m_timeshift_enabled;
+       
+       int m_current_audio_stream;
+       int selectAudioStream(int n);
 };
 
 #endif