diff options
Diffstat (limited to 'remux/tsremux.h')
-rw-r--r-- | remux/tsremux.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/remux/tsremux.h b/remux/tsremux.h index 09a5372..dbcb9ff 100644 --- a/remux/tsremux.h +++ b/remux/tsremux.h @@ -14,6 +14,10 @@ namespace Streamdev { class cTSRemux { public: + virtual int Put(const uchar *Data, int Count) = 0; + virtual uchar *Get(int &Count) = 0; + virtual void Del(int Count) = 0; + static void SetBrokenLink(uchar *Data, int Length); static int GetPid(const uchar *Data); static int GetPacketLength(const uchar *Data, int Count, int Offset); |