X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fdvb%2Ftstools.h;h=71e00df968242573c5aa48efe44a03a64c1cadb4;hb=6dcb75c26bbfec04b381bb99d75404f9fe50635d;hp=b6a275dcce108798800b4b960fb183b8bed7874b;hpb=8ef240801bf66e543cdea9df3b32fc09cebcc7e5;p=vuplus_dvbapp diff --git a/lib/dvb/tstools.h b/lib/dvb/tstools.h index b6a275d..71e00df 100644 --- a/lib/dvb/tstools.h +++ b/lib/dvb/tstools.h @@ -51,6 +51,9 @@ public: int calcBitrate(); /* in bits/sec */ + void takeSamples(); + + int findPMT(int &pmt_pid, int &service_id); private: int m_pid; int m_maxrange; @@ -61,8 +64,14 @@ private: pts_t m_pts_begin, m_pts_end; off_t m_offset_begin, m_offset_end; + /* for simple linear interpolation */ + std::map m_samples; + int m_samples_taken; + eMPEGStreamInformation m_streaminfo; int m_use_streaminfo; + off_t m_last_filelength; + int m_futile; }; #endif