diff options
author | schmirl <schmirl> | 2009-12-03 07:26:19 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2009-12-03 07:26:19 +0000 |
commit | 913e6164b6229cbd80e5b494ac883da0cc2e3562 (patch) | |
tree | 994bfbc1cb89d5c3e15b46d1702b07529984e800 | |
parent | 1eb9b8568134736995bccdc00357d850f67c0149 (diff) | |
download | vdr-plugin-streamdev-913e6164b6229cbd80e5b494ac883da0cc2e3562.tar.gz vdr-plugin-streamdev-913e6164b6229cbd80e5b494ac883da0cc2e3562.tar.bz2 |
fixed missing virtual destructor for cTSRemux
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | remux/tsremux.h | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,7 @@ VDR Plugin 'streamdev' Revision History --------------------------------------- +- fixed missing virtual destructor for cTSRemux - improved PARENTALRATING patch detection was missing in this branch - silenced warnings concerning asprintf (requested by Rolf Ahrenberg) - don't update recordings list on CmdPLAY (reported by BBlack) diff --git a/remux/tsremux.h b/remux/tsremux.h index dbcd5de..8f22b1d 100644 --- a/remux/tsremux.h +++ b/remux/tsremux.h @@ -11,6 +11,8 @@ namespace Streamdev { class cTSRemux { public: + virtual ~cTSRemux() {}; + virtual int Put(const uchar *Data, int Count) = 0; virtual uchar *Get(int &Count) = 0; virtual void Del(int Count) = 0; |