fixed missing virtual destructor for cTSRemux

This commit is contained in:
schmirl 2009-12-03 07:26:19 +00:00
parent 1eb9b85681
commit 913e6164b6
2 changed files with 3 additions and 0 deletions

View File

@ -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)

View File

@ -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;