mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added a note about not deleting cDeviceHook objects to device.h
This commit is contained in:
parent
db5c3cd36a
commit
c270adfaa5
1
HISTORY
1
HISTORY
@ -6424,3 +6424,4 @@ Video Disk Recorder Revision History
|
|||||||
device (as far as the driver allows this).
|
device (as far as the driver allows this).
|
||||||
- Fixed cFrameDetector::Analyze() in case part of the data has been processed and
|
- Fixed cFrameDetector::Analyze() in case part of the data has been processed and
|
||||||
there is less than MIN_TS_PACKETS_FOR_FRAME_DETECTOR left (reported by Derek Kelly).
|
there is less than MIN_TS_PACKETS_FOR_FRAME_DETECTOR left (reported by Derek Kelly).
|
||||||
|
- Added a note about not deleting cDeviceHook objects to device.h.
|
||||||
|
5
device.h
5
device.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: device.h 2.21 2010/02/06 14:34:41 kls Exp $
|
* $Id: device.h 2.22 2010/04/05 09:51:29 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __DEVICE_H
|
#ifndef __DEVICE_H
|
||||||
@ -91,6 +91,9 @@ class cLiveSubtitle;
|
|||||||
class cDeviceHook : public cListObject {
|
class cDeviceHook : public cListObject {
|
||||||
public:
|
public:
|
||||||
cDeviceHook(void);
|
cDeviceHook(void);
|
||||||
|
///< Creates a new device hook object.
|
||||||
|
///< Do not delete this object - it will be automatically deleted when the
|
||||||
|
///< program ends.
|
||||||
virtual bool DeviceProvidesTransponder(const cDevice *Device, const cChannel *Channel) const;
|
virtual bool DeviceProvidesTransponder(const cDevice *Device, const cChannel *Channel) const;
|
||||||
///< Returns true if the given Device can provide the given Channel's transponder.
|
///< Returns true if the given Device can provide the given Channel's transponder.
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user