fixed sequence to floating point conversion in usals parameters
[enigma2.git] / lib / service / servicedvb.h
index ac856ed7510d1e5ce4dbcdc766ae6ae389671453..b1df4cb78169a60af637d39c2fcba9ea332c9080 100644 (file)
@@ -52,7 +52,10 @@ private:
        eBouquet *m_bouquet;
 };
 
-class eDVBServicePlay: public iPlayableService, public iPauseableService, public iSeekableService, public Object, public iServiceInformation
+class eDVBServicePlay: public iPlayableService, public iPauseableService, 
+               public iSeekableService, public Object, public iServiceInformation, 
+               public iAudioTrackSelection, public iFrontendStatusInformation,
+               public iSubserviceList, public iTimeshiftService
 {
 DECLARE_REF(eDVBServicePlay);
 public:
@@ -65,20 +68,45 @@ public:
        RESULT seek(ePtr<iSeekableService> &ptr);
        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;
@@ -98,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