X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b6592b47fa1932132a67a3beabcce7c96856d211..81b381e1f5dd38ad1b80a3b3d96060b89a5fab6c:/lib/dvb/dvb.h diff --git a/lib/dvb/dvb.h b/lib/dvb/dvb.h index 9a85c22c..924d4e6e 100644 --- a/lib/dvb/dvb.h +++ b/lib/dvb/dvb.h @@ -114,7 +114,7 @@ class eDVBResourceManager: public iObject there might be a priority given to certain frontend/chid combinations. this will be evaluated here. */ - RESULT allocateFrontend(const eDVBChannelID &chid, ePtr &fe); + RESULT allocateFrontend(ePtr &feparm, ePtr &fe); /* allocate a demux able to filter on the selected frontend. */ RESULT allocateDemux(eDVBRegisteredFrontend *fe, ePtr &demux, int cap); @@ -178,7 +178,7 @@ public: /* only for managed channels - effectively tunes to the channelid. should not be used... */ /* cannot be used for PVR channels. */ - RESULT setChannel(const eDVBChannelID &id); + RESULT setChannel(const eDVBChannelID &id, ePtr &feparam); eDVBChannelID getChannelID() { return m_channel_id; } RESULT connectStateChange(const Slot1 &stateChange, ePtr &connection); @@ -191,7 +191,11 @@ public: /* iDVBPVRChannel */ RESULT playFile(const char *file); RESULT getLength(pts_t &len); - RESULT getCurrentPosition(pts_t &pos); + RESULT getCurrentPosition(iDVBDemux *decoding_demux, pts_t &pos); + RESULT seekTo(iDVBDemux *decoding_demux, int relative, pts_t &pts); + /* seeking to relative positions won't work - + there is an unknown amount of buffers in between */ + RESULT seekToPosition(iDVBDemux *decoding_demux, const off_t &off); private: ePtr m_frontend;