X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;ds=inline;f=lib%2Fdvb%2Fpmt.h;h=0ea36e47750ea1f000b5678dace3fd3a76881581;hb=ed9038b0f131b63d3db62c51e7e195ddc5c26122;hp=cabc6aceb6e88781699b0baddc91a5e7944ba8bb;hpb=bce53d4a67d1655a496eebe5912c8573e880114e;p=vuplus_dvbapp diff --git a/lib/dvb/pmt.h b/lib/dvb/pmt.h index cabc6ac..0ea36e4 100644 --- a/lib/dvb/pmt.h +++ b/lib/dvb/pmt.h @@ -123,6 +123,7 @@ public: eventNewProgramInfo, // we just received a PMT eventTuned, // a channel was sucessfully (re-)tuned in, you may start additional filters now + eventPreStart, // before start filepush thread eventSOF, // seek pre start eventEOF, // a file playback did end @@ -141,8 +142,9 @@ public: struct audioStream { - int pid; - enum { atMPEG, atAC3, atDTS, atAAC, atAACHE }; + int pid, + rdsPid; // hack for some radio services which transmit radiotext on different pid (i.e. harmony fm, HIT RADIO FFH, ...) + enum { atMPEG, atAC3, atDTS, atAAC, atAACHE, atLPCM }; int type; // mpeg2, ac3, dts, ... int component_tag; @@ -188,7 +190,6 @@ public: int pmtPid; int textPid; bool isCrypted() { return !caids.empty(); } - PyObject *createPythonObject(); }; @@ -205,6 +206,8 @@ public: void resetCachedProgram() { m_have_cached_program = false; } int tune(eServiceReferenceDVB &ref, int use_decode_demux, eCueSheet *sg=0, bool simulate=false, eDVBService *service = 0); + int tuneExt(eServiceReferenceDVB &ref, int use_decode_demux, ePtr &, eCueSheet *sg=0, bool simulate=false, eDVBService *service = 0); + void free(); private: bool m_have_cached_program;