X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/8ef240801bf66e543cdea9df3b32fc09cebcc7e5..e1342ca063df18d3b933420150d06b86ea506bb3:/lib/dvb/tstools.h diff --git a/lib/dvb/tstools.h b/lib/dvb/tstools.h index b6a275dc..1aa10c70 100644 --- a/lib/dvb/tstools.h +++ b/lib/dvb/tstools.h @@ -51,6 +51,8 @@ public: int calcBitrate(); /* in bits/sec */ + void takeSamples(); + private: int m_pid; int m_maxrange; @@ -61,6 +63,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; };