diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-07-28 11:29:32 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-07-28 11:29:32 +0200 |
commit | a4246cfd9aa7f3c5a02145815a1e26dcace09327 (patch) | |
tree | 98386d9bbd934e14a44e162d8dfacf40a9c388a3 /receiver.h | |
parent | e77d5dfbfba9d05ed647ca19f7295428e7e2202c (diff) | |
download | vdr-a4246cfd9aa7f3c5a02145815a1e26dcace09327.tar.gz vdr-a4246cfd9aa7f3c5a02145815a1e26dcace09327.tar.bz2 |
Fixed PID handling for cReceiver
Diffstat (limited to 'receiver.h')
-rw-r--r-- | receiver.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: receiver.h 1.1 2002/06/10 16:30:00 kls Exp $ + * $Id: receiver.h 1.2 2002/07/28 11:22:01 kls Exp $ */ #ifndef __RECEIVER_H @@ -42,6 +42,9 @@ public: // the given Priority. NumPids defines the number of PIDs that follow // this parameter. If any of these PIDs are 0, they will be silently ignored. // The total number of non-zero PIDs must not exceed MAXRECEIVEPIDS. + // Priority may be any value in the range 0..99. Negative values indicate + // that this cReceiver may be detached at any time (without blocking the + // cDevice it is attached to). virtual ~cReceiver(); }; |