]> git.vomp.tv Git - vompserver.git/blob - remux/ts2es.h
Initial import
[vompserver.git] / remux / ts2es.h
1 #ifndef VDR_STREAMDEV_TS2ESREMUX_H
2 #define VDR_STREAMDEV_TS2ESREMUX_H
3
4 #include "tsremux.h"
5
6 class cTS2ES;
7
8 class cTS2ESRemux: public cTSRemux {
9 private:
10         int m_Pid;
11         cTS2ES *m_Remux;
12
13 protected:
14         virtual void PutTSPacket(int Pid, const uint8_t *Data);
15
16 public:
17         cTS2ESRemux(int Pid);
18         virtual ~cTS2ESRemux();
19 };
20
21 #endif // VDR_STREAMDEV_TS2ESREMUX_H