fixme: stopService()
[enigma2.git] / lib / dvb / demux.h
index c7fa5bc0e3727f7d70e25c44a9944ab3fa91e3e8..08d9f43de19d1cfad798a894b20e80f9a8dddb27 100644 (file)
@@ -2,25 +2,39 @@
 #define __dvb_demux_h
 
 #include <lib/dvb/idvb.h>
-#include <lib/dvb/isection.h>
+#include <lib/dvb/idemux.h>
 
 class eDVBDemux: public iDVBDemux
 {
        int adapter, demux;
+       
+       int m_dvr_busy;
        friend class eDVBSectionReader;
        friend class eDVBAudio;
        friend class eDVBVideo;
+       friend class eDVBPCR;
+       friend class eDVBTSRecorder;
+       friend class eDVBCAService;
+       Signal1<void, int> m_event;
 public:
-       DECLARE_REF
+       enum {
+               evtFlush
+       };
+       DECLARE_REF(eDVBDemux);
        eDVBDemux(int adapter, int demux);
        virtual ~eDVBDemux();
        RESULT createSectionReader(eMainloop *context, ePtr<iDVBSectionReader> &reader);
+       RESULT createTSRecorder(ePtr<iDVBTSRecorder> &recorder);
        RESULT getMPEGDecoder(ePtr<iTSMPEGDecoder> &reader);
+       RESULT getSTC(pts_t &pts);
+       RESULT getCADemuxID(uint8_t &id) { id = demux; return 0; }
+       RESULT flush();
+       RESULT connectEvent(const Slot1<void,int> &event, ePtr<eConnection> &conn);
 };
 
 class eDVBSectionReader: public iDVBSectionReader, public Object
 {
-       DECLARE_REF
+       DECLARE_REF(eDVBSectionReader);
 private:
        int fd;
        Signal1<void, const __u8*> read;
@@ -38,4 +52,39 @@ public:
        RESULT connectRead(const Slot1<void,const __u8*> &read, ePtr<eConnection> &conn);
 };
 
+class eFilePushThread;
+
+class eDVBTSRecorder: public iDVBTSRecorder, public Object
+{
+       DECLARE_REF(eDVBTSRecorder);
+public:
+       eDVBTSRecorder(eDVBDemux *demux);
+       ~eDVBTSRecorder();
+
+       RESULT start();
+       RESULT addPID(int pid);
+       RESULT removePID(int pid);
+       
+       RESULT setFormat(int pid);
+       
+       RESULT setTargetFD(int fd);
+       RESULT setBoundary(off_t max);
+       
+       RESULT stop();
+       
+       RESULT connectEvent(const Slot1<void,int> &event, ePtr<eConnection> &conn);
+private:
+       RESULT startPID(int pid);
+       void stopPID(int pid);
+       
+       eFilePushThread *m_thread;
+       
+       std::map<int,int> m_pids;
+       Signal1<void,int> m_event;
+       
+       ePtr<eDVBDemux> m_demux;
+       
+       int m_running, m_format, m_target_fd, m_source_fd;
+};
+
 #endif