mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
fixed missing virtual destructor for cTSRemux
This commit is contained in:
parent
d794d83854
commit
b3c72deaed
1
HISTORY
1
HISTORY
@ -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)
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user