X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/8ef240801bf66e543cdea9df3b32fc09cebcc7e5..40d11af2de7aed77c90970ba2b61dd754a225117:/lib/dvb/tstools.h diff --git a/lib/dvb/tstools.h b/lib/dvb/tstools.h index b6a275dc..175cef66 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,6 +64,10 @@ 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; };