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
1eb9b85681
commit
913e6164b6
1
HISTORY
1
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)
|
||||
|
@ -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…
x
Reference in New Issue
Block a user