diff options
author | Johns <johns98@gmx.net> | 2012-08-09 16:22:06 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-08-09 16:22:06 +0200 |
commit | ecb48a5d637ff1c41001729cbf016e5498601bac (patch) | |
tree | ba602fc91b2b4f6e9e8f921ba4ca68a1659cb832 /softhddevice.cpp | |
parent | 9efc73144dea3189a919c6859543a630bca19a78 (diff) | |
download | vdr-plugin-softhddevice-ecb48a5d637ff1c41001729cbf016e5498601bac.tar.gz vdr-plugin-softhddevice-ecb48a5d637ff1c41001729cbf016e5498601bac.tar.bz2 |
Resume plugin, if dummy player looses control.
Diffstat (limited to 'softhddevice.cpp')
-rw-r--r-- | softhddevice.cpp | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp index 301b23d..a6646a6 100644 --- a/softhddevice.cpp +++ b/softhddevice.cpp @@ -1117,11 +1117,8 @@ eOSState cSoftHdControl::ProcessKey(eKeys key) { if (SuspendMode == SUSPEND_NORMAL && (!ISMODELESSKEY(key) || key == kMenu || key == kBack || key == kStop)) { - if (Player) { - delete Player; - - Player = NULL; - } + delete Player; + Player = NULL; Resume(); SuspendMode = NOT_SUSPENDED; return osEnd; @@ -1142,10 +1139,12 @@ cSoftHdControl::cSoftHdControl(void) */ cSoftHdControl::~cSoftHdControl() { - if (Player) { - delete Player; - - Player = NULL; + delete Player; + Player = NULL; + // loose control resume + if (SuspendMode == SUSPEND_NORMAL) { + Resume(); + SuspendMode = NOT_SUSPENDED; } dsyslog("[softhddev]%s: dummy player stopped\n", __FUNCTION__); |