diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | omxdevice.h | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -2,6 +2,7 @@ VDR Plugin 'rpihddevice' Revision History ----------------------------------------- - new: + - set device name - add option for dual display usage, see README - fixed: - ignore pts from erroneous packets to avoid pts jumps on broken streams diff --git a/omxdevice.h b/omxdevice.h index 3808c66..7e88d98 100644 --- a/omxdevice.h +++ b/omxdevice.h @@ -23,6 +23,8 @@ public: cOmxDevice(void (*onPrimaryDevice)(void), int display, int layer); virtual ~cOmxDevice(); + virtual cString DeviceName(void) const { return "rpihddevice"; } + virtual int Init(void); virtual int DeInit(void); |