X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/8eadc0e09e19713d6c2b1c12aa2946042cfafabe..462ec6f4ad2051551cb91c75ba614d3b7b17c543:/lib/dvb/idvb.h diff --git a/lib/dvb/idvb.h b/lib/dvb/idvb.h index 8aa3391d..5b6f19fc 100644 --- a/lib/dvb/idvb.h +++ b/lib/dvb/idvb.h @@ -185,6 +185,11 @@ struct eServiceReferenceDVB: public eServiceReference :eServiceReference(eServiceReference::idDVB, 0) { } + + eServiceReferenceDVB(const std::string &string) + :eServiceReference(string) + { + } }; @@ -466,12 +471,15 @@ public: /** Set Displayed Audio PID and type */ virtual RESULT setAudioPID(int apid, int type)=0; + /** Set Displayed Videotext PID */ + virtual RESULT setTextPID(int vpid)=0; + /** Set Sync mode to PCR */ virtual RESULT setSyncPCR(int pcrpid)=0; enum { sm_Audio, sm_Video }; /** Set Sync mode to either audio or video master */ virtual RESULT setSyncMaster(int who)=0; - + /** Apply settings */ virtual RESULT start()=0;