diff options
author | schmirl <schmirl> | 2008-03-28 15:11:40 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2008-03-28 15:11:40 +0000 |
commit | b66bf7a698738389a030d1512d5442c149ab27db (patch) | |
tree | 07c58ba6891b29ffd53b22b7d964e1cc32bb3bcd /remux/extern.h | |
parent | 79836e69a99afd7a9a7b60ce41c5907fbed288d4 (diff) | |
download | vdr-plugin-streamdev-b66bf7a698738389a030d1512d5442c149ab27db.tar.gz vdr-plugin-streamdev-b66bf7a698738389a030d1512d5442c149ab27db.tar.bz2 |
Rewrite of http menu (#439)
Including
- m3u playlists by Petri Hintukainen (#254)
- way to pass parameters to externremux by Rolf Ahrenberg
- using host header for absolute URLs for better DNAT / Reverse Proxy support
Diffstat (limited to 'remux/extern.h')
-rw-r--r-- | remux/extern.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/remux/extern.h b/remux/extern.h index ae055ac..7a44852 100644 --- a/remux/extern.h +++ b/remux/extern.h @@ -3,6 +3,7 @@ #include "remux/tsremux.h" #include <vdr/ringbuffer.h> +#include <string> extern const char *g_ExternRemux; @@ -14,7 +15,7 @@ private: cTSExt *m_Remux; public: - cExternRemux(int VPid, const int *APids, const int *Dpids, const int *SPids); + cExternRemux(int VPid, const int *APids, const int *Dpids, const int *SPids, std::string Parameter); virtual ~cExternRemux(); int Put(const uchar *Data, int Count); |