vdr-plugin-streamdev/remux/ts2es.h

29 lines
586 B
C
Raw Permalink Normal View History

2004-12-30 23:43:55 +01:00
#ifndef VDR_STREAMDEV_TS2ESREMUX_H
#define VDR_STREAMDEV_TS2ESREMUX_H
#include "remux/tsremux.h"
#include "server/streamer.h"
namespace Streamdev {
2004-12-30 23:43:55 +01:00
class cTS2ES;
class cTS2ESRemux: public cTSRemux {
private:
2005-02-11 17:44:14 +01:00
int m_Pid;
cStreamdevBuffer *m_ResultBuffer;
2005-02-11 17:44:14 +01:00
cTS2ES *m_Remux;
2004-12-30 23:43:55 +01:00
public:
cTS2ESRemux(int Pid);
virtual ~cTS2ESRemux();
2005-02-11 17:44:14 +01:00
int Put(const uchar *Data, int Count);
uchar *Get(int &Count) { return m_ResultBuffer->Get(Count); }
void Del(int Count) { m_ResultBuffer->Del(Count); }
2004-12-30 23:43:55 +01:00
};
} // namespace Streamdev
2004-12-30 23:43:55 +01:00
#endif // VDR_STREAMDEV_TS2ESREMUX_H