X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/bbedbd76e313e3115580d819efc608d3ad9dfc9d..7d7331ac43c18159a7ebeb652e0e7d971118a8f7:/lib/service/servicedvb.h diff --git a/lib/service/servicedvb.h b/lib/service/servicedvb.h index da307324..5d3d0085 100644 --- a/lib/service/servicedvb.h +++ b/lib/service/servicedvb.h @@ -41,7 +41,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); @@ -66,12 +66,14 @@ public: PyObject *getFrontendData(bool); }; +class eSubtitleWidget; + class eDVBServicePlay: public eDVBServiceBase, public iPlayableService, public iPauseableService, public iSeekableService, public Object, public iServiceInformation, public iAudioTrackSelection, public iAudioChannelSelection, public iSubserviceList, public iTimeshiftService, - public iCueSheet + public iCueSheet, public iSubtitleOutput, public iAudioDelay { DECLARE_REF(eDVBServicePlay); public: @@ -92,6 +94,8 @@ public: RESULT subServices(ePtr &ptr); RESULT timeshift(ePtr &ptr); RESULT cueSheet(ePtr &ptr); + RESULT subtitle(ePtr &ptr); + RESULT audioDelay(ePtr &ptr); // iPauseableService RESULT pause(); @@ -138,6 +142,17 @@ public: void setCutList(PyObject *); void setCutListEnable(int enable); + // iSubtitleOutput + RESULT enableSubtitles(eWidget *parent, PyObject *entry); + RESULT disableSubtitles(eWidget *parent); + PyObject *getSubtitleList(); + + // iAudioDelay + int getAC3Delay(); + int getPCMDelay(); + void setAC3Delay(int); + void setPCMDelay(int); + private: friend class eServiceFactoryDVB; eServiceReference m_reference; @@ -146,6 +161,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; @@ -168,7 +184,7 @@ private: int m_timeshift_fd; ePtr m_decode_demux; - + int m_current_audio_stream; int selectAudioStream(int n); @@ -212,7 +228,15 @@ private: void cutlistToCuesheet(); /* teletext subtitles */ + 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; + + void checkSubtitleTiming(); }; #endif