mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
22 lines
357 B
C++
22 lines
357 B
C++
#ifndef VDR_STREAMDEV_TS2ESREMUX_H
|
|
#define VDR_STREAMDEV_TS2ESREMUX_H
|
|
|
|
#include "remux/tsremux.h"
|
|
|
|
class cTS2ES;
|
|
|
|
class cTS2ESRemux: public cTSRemux {
|
|
private:
|
|
int m_Pid;
|
|
cTS2ES *m_Remux;
|
|
|
|
protected:
|
|
virtual void PutTSPacket(int Pid, const uint8_t *Data);
|
|
|
|
public:
|
|
cTS2ESRemux(int Pid);
|
|
virtual ~cTS2ESRemux();
|
|
};
|
|
|
|
#endif // VDR_STREAMDEV_TS2ESREMUX_H
|