diff options
author | schmirl <schmirl> | 2008-04-07 14:40:39 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2008-04-07 14:40:39 +0000 |
commit | 89735cbd95ea82c309be3c2faf939d03cc8aa6eb (patch) | |
tree | 392a83f4d24bc84eda8b08624688877cc378ff1a /client/device.c | |
parent | f51d6eb2dfb128a29db34b05d9b92a9633dd5b29 (diff) | |
download | vdr-plugin-streamdev-89735cbd95ea82c309be3c2faf939d03cc8aa6eb.tar.gz vdr-plugin-streamdev-89735cbd95ea82c309be3c2faf939d03cc8aa6eb.tar.bz2 |
- resurrected clients "Suspend Server" menu item as its mainmenu entry
- dropped unused code for remote timers/recordings on client side
- dropped unused files client/{assembler,menu,remote}.[hc]
- dropped unused files in libdvbmpeg (reported by tobi)
Diffstat (limited to 'client/device.c')
-rw-r--r-- | client/device.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/client/device.c b/client/device.c index d8cbe70..708b1dc 100644 --- a/client/device.c +++ b/client/device.c @@ -1,10 +1,9 @@ /* - * $Id: device.c,v 1.16 2008/04/07 14:27:28 schmirl Exp $ + * $Id: device.c,v 1.17 2008/04/07 14:40:39 schmirl Exp $ */ #include "client/device.h" #include "client/setup.h" -#include "client/assembler.h" #include "client/filter.h" #include "tools/select.h" @@ -26,11 +25,9 @@ cStreamdevDevice *cStreamdevDevice::m_Device = NULL; cStreamdevDevice::cStreamdevDevice(void) { m_Channel = NULL; m_TSBuffer = NULL; - m_Assembler = NULL; m_Filters = new cStreamdevFilters; StartSectionHandler(); - cSchedules::Read(); m_Device = this; m_Pids = 0; @@ -54,7 +51,6 @@ cStreamdevDevice::~cStreamdevDevice() { DELETENULL(m_Filters); DELETENULL(m_TSBuffer); - delete m_Assembler; } bool cStreamdevDevice::ProvidesSource(int Source) const { @@ -283,7 +279,6 @@ bool cStreamdevDevice::ReInit(void) { ClientSocket.Reset(); if (m_Device != NULL) { //DELETENULL(m_Device->m_TSBuffer); - DELETENULL(m_Device->m_Assembler); m_Device->Unlock(); } return StreamdevClientSetup.StartClient ? Init() : true; |