mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Temporarily made cDevice::ProvidesCa() virtual
This commit is contained in:
parent
9a1a16f3d4
commit
2f684611d4
2
HISTORY
2
HISTORY
@ -1402,3 +1402,5 @@ Video Disk Recorder Revision History
|
|||||||
- Changed the log error message "can't record MPEG1!" to "error in data stream!",
|
- Changed the log error message "can't record MPEG1!" to "error in data stream!",
|
||||||
since the mentioning of MPEG1 has irritated many people.
|
since the mentioning of MPEG1 has irritated many people.
|
||||||
- Consistently using malloc/free and new/delete (thanks to Andreas Schultz).
|
- Consistently using malloc/free and new/delete (thanks to Andreas Schultz).
|
||||||
|
- Temporarily made cDevice::ProvidesCa() virtual (Andreas Schultz needs this
|
||||||
|
in his DXR3 plugin).
|
||||||
|
6
device.h
6
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 1.5 2002/08/04 14:02:19 kls Exp $
|
* $Id: device.h 1.6 2002/08/11 13:38:13 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __DEVICE_H
|
#ifndef __DEVICE_H
|
||||||
@ -97,7 +97,9 @@ public:
|
|||||||
bool IsPrimaryDevice(void) const { return this == primaryDevice; }
|
bool IsPrimaryDevice(void) const { return this == primaryDevice; }
|
||||||
int CardIndex(void) const { return cardIndex; }
|
int CardIndex(void) const { return cardIndex; }
|
||||||
// Returns the card index of this device (0 ... MAXDEVICES - 1).
|
// Returns the card index of this device (0 ... MAXDEVICES - 1).
|
||||||
int ProvidesCa(int Ca);
|
virtual int ProvidesCa(int Ca);
|
||||||
|
//XXX TODO temporarily made this function virtual - until a general
|
||||||
|
//XXX mechanism has been implemented
|
||||||
// Checks whether this device provides the given value in its
|
// Checks whether this device provides the given value in its
|
||||||
// caCaps. Returns 0 if the value is not provided, 1 if only this
|
// caCaps. Returns 0 if the value is not provided, 1 if only this
|
||||||
// value is provided, and > 1 if this and other values are provided.
|
// value is provided, and > 1 if this and other values are provided.
|
||||||
|
Loading…
Reference in New Issue
Block a user