diff options
author | schmirl <schmirl> | 2009-07-06 06:11:11 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2009-07-06 06:11:11 +0000 |
commit | 5644d3c03fca04d52fc3cc0017784f866a746015 (patch) | |
tree | f7d8808c63335ee4613ac4a970f22fde82978bc2 | |
parent | fe77c5dccb9d8ef6119a64eb4a8cadbdf9227ea2 (diff) | |
download | vdr-plugin-streamdev-5644d3c03fca04d52fc3cc0017784f866a746015.tar.gz vdr-plugin-streamdev-5644d3c03fca04d52fc3cc0017784f866a746015.tar.bz2 |
fixed missing virtual for cTS2PESRemux destructor
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | remux/ts2pes.h | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ VDR Plugin 'streamdev' Revision History --------------------------------------- +- fixed missing virtual for cTS2PESRemux destructor - silenced format mismatch warning on 64bit OS - added XBMC support by extending VTP capabilities (thanks to Alwin Esch) - now there's a common baseclass for all remuxers, make use of it diff --git a/remux/ts2pes.h b/remux/ts2pes.h index 61ac857..e9d7237 100644 --- a/remux/ts2pes.h +++ b/remux/ts2pes.h @@ -4,7 +4,7 @@ * This file is based on a copy of remux.h from Klaus Schmidinger's * VDR, version 1.6.0. * - * $Id: ts2pes.h,v 1.3 2009/06/30 06:04:33 schmirl Exp $ + * $Id: ts2pes.h,v 1.4 2009/07/06 06:11:11 schmirl Exp $ */ #ifndef VDR_STREAMDEV_TS2PES_H @@ -34,7 +34,7 @@ public: ///< APids, DPids and SPids are pointers to zero terminated lists of audio, ///< dolby and subtitle PIDs (the pointers may be NULL if there is no such ///< PID). - ~cTS2PESRemux(); + virtual ~cTS2PESRemux(); int Put(const uchar *Data, int Count); ///< Puts at most Count bytes of Data into the remuxer. ///< \return Returns the number of bytes actually consumed from Data. |