X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fdvb%2Fpmt.h;h=483c06b15ae3007c06514ca7760d30fdf7a05300;hp=e27135e3c9968bd73cf1cb048485d1684bf034e6;hb=4d7f4836f07bb037bc1c840983e5ef1c99606005;hpb=dd593ab0ef5b0d15c79b7e8eb909ed79f070cd97 diff --git a/lib/dvb/pmt.h b/lib/dvb/pmt.h index e27135e..483c06b 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,7 +142,8 @@ public: struct audioStream { - int pid; + 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, ... @@ -188,7 +190,6 @@ public: int pmtPid; int textPid; bool isCrypted() { return !caids.empty(); } - PyObject *createPythonObject(); };