X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/a33ff213255db7f59090f70235ec06c502e2a2ce..33a78f65a250068a9c82707b704fb38f3a54091e:/lib/dvb/dvb.h diff --git a/lib/dvb/dvb.h b/lib/dvb/dvb.h index 34c55492..d9f049eb 100644 --- a/lib/dvb/dvb.h +++ b/lib/dvb/dvb.h @@ -156,16 +156,19 @@ public: }; /* allocate channel... */ - RESULT allocateChannel(const eDVBChannelID &channelid, ePtr &channel); - RESULT allocateRawChannel(ePtr &channel); - RESULT allocatePVRChannel(int caps); + RESULT allocateChannel(const eDVBChannelID &channelid, eUsePtr &channel); + RESULT allocateRawChannel(eUsePtr &channel); + RESULT allocatePVRChannel(eUsePtr &channel); RESULT connectChannelAdded(const Slot1 &channelAdded, ePtr &connection); RESULT connectChannelRemoved(const Slot1 &channelRemoved, ePtr &connection); RESULT connectChannelRunning(const Slot1 &channelRemoved, ePtr &connection); }; -class eDVBChannel: public iDVBChannel, public Object +class eFilePushThread; + + /* iDVBPVRChannel includes iDVBChannel. don't panic. */ +class eDVBChannel: public iDVBPVRChannel, public Object { DECLARE_REF(eDVBChannel); private: @@ -182,11 +185,22 @@ private: void frontendStateChanged(iDVBFrontend*fe); ePtr m_conn_frontendStateChanged; + + /* for PVR playback */ + eFilePushThread *m_pvr_thread; + int m_pvr_fd_src, m_pvr_fd_dst; + + friend class eUsePtr; + /* use count */ + oRefCount m_use_count; + void AddUse(); + void ReleaseUse(); public: eDVBChannel(eDVBResourceManager *mgr, eDVBAllocatedFrontend *frontend, eDVBAllocatedDemux *demux); virtual ~eDVBChannel(); /* only for managed channels - effectively tunes to the channelid. should not be used... */ + /* cannot be used for PVR channels. */ RESULT setChannel(const eDVBChannelID &id); eDVBChannelID getChannelID() { return m_channel_id; } @@ -196,6 +210,9 @@ public: RESULT setCIRouting(const eDVBCIRouting &routing); RESULT getDemux(ePtr &demux); RESULT getFrontend(ePtr &frontend); + + /* iDVBPVRChannel */ + RESULT playFile(const char *file); }; #endif