X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/6e95f24aaf7e2629f193269397ec187ddda8ea3d..95c570d26ce81e3dd1e0610ff6c5c0b34d75ba5a:/lib/service/servicedvb.h diff --git a/lib/service/servicedvb.h b/lib/service/servicedvb.h index 5b9cf75c..5e0cf0b4 100644 --- a/lib/service/servicedvb.h +++ b/lib/service/servicedvb.h @@ -6,12 +6,19 @@ #include #include +#include #include +#include #include +class eStaticServiceDVBInformation; +class eStaticServiceDVBBouquetInformation; + class eServiceFactoryDVB: public iServiceHandler { -DECLARE_REF(eServiceFactoryDVB); + DECLARE_REF(eServiceFactoryDVB); + ePtr m_StaticServiceDVBInfo; + ePtr m_StaticServiceDVBBouquetInfo; public: eServiceFactoryDVB(); virtual ~eServiceFactoryDVB(); @@ -41,7 +48,7 @@ public: RESULT startEdit(ePtr &); RESULT flushChanges(); - RESULT addService(eServiceReference &ref); + RESULT addService(eServiceReference &ref, eServiceReference before); RESULT removeService(eServiceReference &ref); RESULT moveService(eServiceReference &ref, int pos); RESULT setListName(const std::string &name); @@ -59,7 +66,7 @@ private: class eDVBServiceBase: public iFrontendInformation { protected: - eDVBServicePMTHandler m_service_handler; + eDVBServicePMTHandler m_service_handler ; public: // iFrontendInformation int getFrontendInfo(int w); @@ -73,7 +80,8 @@ class eDVBServicePlay: public eDVBServiceBase, public iSeekableService, public Object, public iServiceInformation, public iAudioTrackSelection, public iAudioChannelSelection, public iSubserviceList, public iTimeshiftService, - public iCueSheet, public iSubtitleOutput + public iCueSheet, public iSubtitleOutput, public iAudioDelay, + public iRadioText { DECLARE_REF(eDVBServicePlay); public: @@ -95,6 +103,8 @@ public: RESULT timeshift(ePtr &ptr); RESULT cueSheet(ePtr &ptr); RESULT subtitle(ePtr &ptr); + RESULT audioDelay(ePtr &ptr); + RESULT radioText(ePtr &ptr); // iPauseableService RESULT pause(); @@ -126,6 +136,9 @@ public: int getCurrentChannel(); RESULT selectChannel(int i); + // iRadioText + std::string getRadioText(int i=0); + // iSubserviceList int getNumberOfSubservices(); RESULT getSubservice(eServiceReference &subservice, unsigned int n); @@ -145,6 +158,13 @@ public: RESULT enableSubtitles(eWidget *parent, PyObject *entry); RESULT disableSubtitles(eWidget *parent); PyObject *getSubtitleList(); + PyObject *getCachedSubtitle(); + + // iAudioDelay + int getAC3Delay(); + int getPCMDelay(); + void setAC3Delay(int); + void setPCMDelay(int); private: friend class eServiceFactoryDVB; @@ -154,6 +174,7 @@ private: ePtr m_decoder; int m_is_primary; + int m_have_video_pid; /* in timeshift mode, we essentially have two channels, and thus pmt handlers. */ eDVBServicePMTHandler m_service_handler_timeshift; @@ -176,7 +197,7 @@ private: int m_timeshift_fd; ePtr m_decode_demux; - + int m_current_audio_stream; int selectAudioStream(int n); @@ -219,16 +240,27 @@ private: void cutlistToCuesheet(); + eSubtitleWidget *m_subtitle_widget; + /* teletext subtitles */ + ePtr m_teletext_parser; void newSubtitlePage(const eDVBTeletextSubtitlePage &p); ePtr m_new_subtitle_page_connection; - - ePtr m_teletext_parser; - eSubtitleWidget *m_subtitle_widget; - eTimer m_subtitle_sync_timer; std::list m_subtitle_pages; + /* dvb subtitles */ + ePtr m_subtitle_parser; + void newDVBSubtitlePage(const eDVBSubtitlePage &p); + ePtr m_new_dvb_subtitle_page_connection; + std::list m_dvb_subtitle_pages; + + eTimer m_subtitle_sync_timer; void checkSubtitleTiming(); + + /* radiotext */ + ePtr m_radiotext_parser; + ePtr m_radiotext_updated_connection; + void radioTextUpdated(); }; #endif