X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fdvb%2Fpvrparse.h;h=94f9f67fddc2590cc492cb31f9c38a746cbe2ea9;hp=69bb992401ac38aa0603585962e09f19edf91304;hb=139531c95ab1bd9ea0da563d43a3d8677b937aa9;hpb=ca49e976280c61bb862d03567ddf65dbce3d568c diff --git a/lib/dvb/pvrparse.h b/lib/dvb/pvrparse.h index 69bb992..94f9f67 100644 --- a/lib/dvb/pvrparse.h +++ b/lib/dvb/pvrparse.h @@ -55,6 +55,7 @@ public: eMPEGStreamParserTS(eMPEGStreamInformation &streaminfo); void parseData(off_t offset, const void *data, unsigned int len); void setPid(int pid); + int getLastPTS(pts_t &last_pts); private: eMPEGStreamInformation &m_streaminfo; unsigned char m_pkt[188]; @@ -64,6 +65,8 @@ private: int m_pid; int m_need_next_packet; int m_skip; + int m_last_pts_valid; + pts_t m_last_pts; }; #endif