add datetime mgr
[enigma2.git] / lib / dvb / idvb.h
index d521b999463b6b565c19742e60a937c3170f5fc7..d338f298533ae4ffaf2ddd84caf58baab0322708 100644 (file)
@@ -414,7 +414,8 @@ public:
                state_idle,        /* not yet tuned */
                state_tuning,      /* currently tuning (first time) */
                state_unavailable, /* currently unavailable, will be back without further interaction */
-               state_ok           /* ok */
+               state_ok,          /* ok */
+               state_release      /* channel is being shut down. */
        };
        virtual RESULT connectStateChange(const Slot1<void,iDVBChannel*> &stateChange, ePtr<eConnection> &connection)=0;
        virtual RESULT getState(int &state)=0;
@@ -428,6 +429,23 @@ public:
        
                /* direct frontend access for raw channels and/or status inquiries. */
        virtual RESULT getFrontend(ePtr<iDVBFrontend> &frontend)=0;
+       
+               /* use count handling */
+       virtual void AddUse() = 0;
+       virtual void ReleaseUse() = 0;
+};
+
+class iDVBPVRChannel: public iDVBChannel
+{
+public:
+       enum
+       {
+               state_eof = state_release + 1  /* end-of-file reached. */
+       };
+       
+               /* FIXME: there are some very ugly buffer-end and ... related problems */
+               /* so this is VERY UGLY. */
+       virtual RESULT playFile(const char *file) = 0;
 };
 
 class iDVBSectionReader;