Merge branch 'master' into tmbinc/FixTimingBugs
[vuplus_dvbapp] / lib / dvb / tstools.h
index 175cef6..4bc0472 100644 (file)
@@ -18,7 +18,7 @@ public:
        eDVBTSTools();
        ~eDVBTSTools();
 
-       int openFile(const char *filename);
+       int openFile(const char *filename, int nostreaminfo = 0);
        void closeFile();
        
        void setSyncPID(int pid);
@@ -40,7 +40,7 @@ public:
        int fixupPTS(const off_t &offset, pts_t &pts);
        
                /* get (approximate) offset corresponding to PTS */
-       int getOffset(off_t &offset, pts_t &pts);
+       int getOffset(off_t &offset, pts_t &pts, int marg=0);
        
        int getNextAccessPoint(pts_t &ts, const pts_t &start, int direction);
        
@@ -52,6 +52,7 @@ public:
        int calcBitrate(); /* in bits/sec */
        
        void takeSamples();
+       int takeSample(off_t off, pts_t &p);
        
        int findPMT(int &pmt_pid, int &service_id);
 private:
@@ -70,6 +71,8 @@ private:
        
        eMPEGStreamInformation m_streaminfo;
        int m_use_streaminfo;
+       off_t m_last_filelength;
+       int m_futile;
 };
 
 #endif