diff options
author | Frank Schmirler <vdr@schmirler.de> | 2014-09-07 02:48:07 +0200 |
---|---|---|
committer | Frank Schmirler <vdr@schmirler.de> | 2014-09-07 02:48:07 +0200 |
commit | e83c9d92aa1c4a83e2fb9d2474e09dfd78be33ef (patch) | |
tree | b368170ef36d9825cbe62718cb327eadb7c14bcf /remux/extern.h | |
parent | 71c26e7455ea1180800dfdaead281fe4d7850abb (diff) | |
parent | 520adaf3da652f8b29de9882ac518470a5592842 (diff) | |
download | vdr-plugin-streamdev-e83c9d92aa1c4a83e2fb9d2474e09dfd78be33ef.tar.gz vdr-plugin-streamdev-e83c9d92aa1c4a83e2fb9d2474e09dfd78be33ef.tar.bz2 |
Implemented remuxing of recordings (closes #1892)
Diffstat (limited to 'remux/extern.h')
-rw-r--r-- | remux/extern.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/remux/extern.h b/remux/extern.h index 070e4f6..62f193b 100644 --- a/remux/extern.h +++ b/remux/extern.h @@ -6,6 +6,7 @@ #include <string> class cChannel; +class cPatPmtParser; class cServerConnection; namespace Streamdev { @@ -19,6 +20,7 @@ private: public: cExternRemux(const cServerConnection *Connection, const cChannel *Channel, const int *APids, const int *Dpids); + cExternRemux(const cServerConnection *Connection, const cPatPmtParser *PatPmt, const int *APids, const int *Dpids); virtual ~cExternRemux(); int Put(const uchar *Data, int Count); |