diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-01-30 11:10:25 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-01-30 11:10:25 +0100 |
commit | 08899602322175a6cb080951c2ad0dcbf71446fa (patch) | |
tree | 4d8d72ed157813e1a1b159ed5c57f8d875a926b1 /transfer.h | |
parent | a9543347afe9ea7fd031a36e97ef56ba036c1515 (diff) | |
download | vdr-08899602322175a6cb080951c2ad0dcbf71446fa.tar.gz vdr-08899602322175a6cb080951c2ad0dcbf71446fa.tar.bz2 |
The PCR pid is now recorded for channels where this is different from the video PID
Diffstat (limited to 'transfer.h')
-rw-r--r-- | transfer.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: transfer.h 2.1 2008/05/25 12:44:49 kls Exp $ + * $Id: transfer.h 2.2 2010/01/29 16:38:09 kls Exp $ */ #ifndef __TRANSFER_H @@ -21,7 +21,7 @@ protected: virtual void Activate(bool On); virtual void Receive(uchar *Data, int Length); public: - cTransfer(tChannelID ChannelID, int VPid, const int *APids, const int *DPids, const int *SPids); + cTransfer(const cChannel *Channel); virtual ~cTransfer(); }; @@ -30,7 +30,7 @@ private: cTransfer *transfer; static cDevice *receiverDevice; public: - cTransferControl(cDevice *ReceiverDevice, tChannelID ChannelID, int VPid, const int *APids, const int *DPids, const int *SPids); + cTransferControl(cDevice *ReceiverDevice, const cChannel *Channel); ~cTransferControl(); virtual void Hide(void) {} static cDevice *ReceiverDevice(void) { return receiverDevice; } |