fixed missing virtual destructor for cTSRemux

This commit is contained in:
schmirl 2009-12-03 07:26:13 +00:00
parent d794d83854
commit b3c72deaed
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
- added defines for large file support to Makefile as required by VDR 1.7.4+
(reported by wirbel@vdrportal)
- added Slovak translation (thanks to Milan Hrala)

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;