summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-04-26 11:58:54 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-04-26 11:58:54 +0200
commitfd0774c811fca36db9cc1200037e8e8ee2608bb8 (patch)
tree0db5d193d8ce0d2e3dd4b86509ccac416b6d5ebd /channels.h
parentf53912de1e265edbf166eac640b5509b0fd25356 (diff)
downloadvdr-fd0774c811fca36db9cc1200037e8e8ee2608bb8.tar.gz
vdr-fd0774c811fca36db9cc1200037e8e8ee2608bb8.tar.bz2
The PCR PID can now be set separately from the video PID
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/channels.h b/channels.h
index b21ed307..c82fc282 100644
--- a/channels.h
+++ b/channels.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: channels.h 1.6 2002/11/30 12:59:05 kls Exp $
+ * $Id: channels.h 1.7 2003/04/26 09:15:40 kls Exp $
*/
#ifndef __CHANNELS_H
@@ -65,6 +65,7 @@ private:
int source;
int srate;
int vpid;
+ int ppid;
int apid1, apid2;
int dpid1, dpid2;
int tpid;
@@ -98,6 +99,7 @@ public:
int Source(void) const { return source; }
int Srate(void) const { return srate; }
int Vpid(void) const { return vpid; }
+ int Ppid(void) const { return ppid; }
int Apid1(void) const { return apid1; }
int Apid2(void) const { return apid2; }
int Dpid1(void) const { return dpid1; }