diff options
author | Thomas Reufer <thomas@reufer.ch> | 2016-02-12 14:23:23 +0100 |
---|---|---|
committer | Thomas Reufer <thomas@reufer.ch> | 2016-02-12 14:23:23 +0100 |
commit | 9ff3c24437c24fa7be91d73bdddd99291a75cdad (patch) | |
tree | 492e77a9c1dd8dd15498001b5382fc93a03d7714 | |
parent | 5f28243de7b1a5e4d882bc9609080d768e55fcf5 (diff) | |
download | vdr-plugin-rpihddevice-9ff3c24437c24fa7be91d73bdddd99291a75cdad.tar.gz vdr-plugin-rpihddevice-9ff3c24437c24fa7be91d73bdddd99291a75cdad.tar.bz2 |
set device name
-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); |