summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--remux/tsremux.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index e74822e..052720d 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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;