diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-10-25 21:40:39 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-10-25 21:40:39 +0000 |
| commit | 19e39976339e23b38a045116f0ed8211b8a7144b (patch) | |
| tree | 3c0c3e5bc0d8140ff58534c8f8261ce2ce520189 | |
| parent | 08ef7ab7ca52f453a411aa0eb2670fc464e777f9 (diff) | |
| download | enigma2-19e39976339e23b38a045116f0ed8211b8a7144b.tar.gz enigma2-19e39976339e23b38a045116f0ed8211b8a7144b.zip | |
- add seekTo, flush to demux/channel interfaces
| -rw-r--r-- | lib/dvb/idvb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/dvb/idvb.h b/lib/dvb/idvb.h index 764c4556..f5d3d2ee 100644 --- a/lib/dvb/idvb.h +++ b/lib/dvb/idvb.h @@ -468,6 +468,7 @@ public: virtual RESULT getLength(pts_t &pts) = 0; virtual RESULT getCurrentPosition(pts_t &pos) = 0; + virtual RESULT seekTo(pts_t &pts) = 0; // seekTo ... }; @@ -484,6 +485,7 @@ public: virtual RESULT getMPEGDecoder(ePtr<iTSMPEGDecoder> &reader)=0; virtual RESULT getSTC(pts_t &pts)=0; virtual RESULT getCADemuxID(uint8_t &id)=0; + virtual RESULT flush()=0; }; class iTSMPEGDecoder: public iObject |
