summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2017-02-21 14:17:07 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2017-02-21 14:17:07 +0100
commit3f9cdea1c16cb25b7a3ce7c875d46e6d100d593d (patch)
tree20844e355df620ea67229a18b00212290f31c28d /device.h
parent71601e363e730bc073dcc435da8de1d0e3453436 (diff)
downloadvdr-3f9cdea1c16cb25b7a3ce7c875d46e6d100d593d.tar.gz
vdr-3f9cdea1c16cb25b7a3ce7c875d46e6d100d593d.tar.bz2
PIDs can now be added to and deleted from a cReceiver while it is attached to a cDevice
Diffstat (limited to 'device.h')
-rw-r--r--device.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/device.h b/device.h
index 2639e855..581c187a 100644
--- a/device.h
+++ b/device.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: device.h 4.3 2017/01/09 12:51:05 kls Exp $
+ * $Id: device.h 4.4 2017/02/21 13:23:24 kls Exp $
*/
#ifndef __DEVICE_H
@@ -109,6 +109,7 @@ public:
class cDevice : public cThread {
friend class cLiveSubtitle;
friend class cDeviceHook;
+ friend class cReceiver;
private:
static int numDevices;
static int useDevice;
@@ -355,6 +356,7 @@ public:
// PID handle facilities
private:
+ mutable cMutex mutexPids;
virtual void Action(void);
protected:
enum ePidType { ptAudio, ptVideo, ptPcr, ptTeletext, ptDolby, ptOther };