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 /recorder.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 'recorder.h')
-rw-r--r-- | recorder.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recorder.h 2.1 2009/01/06 10:44:58 kls Exp $ + * $Id: recorder.h 2.2 2010/01/29 16:32:32 kls Exp $ */ #ifndef __RECORDER_H @@ -34,9 +34,9 @@ protected: virtual void Receive(uchar *Data, int Length); virtual void Action(void); public: - cRecorder(const char *FileName, tChannelID ChannelID, int Priority, int VPid, const int *APids, const int *DPids, const int *SPids); - // Creates a new recorder for the channel with the given ChannelID and - // the given Priority that will record the given PIDs into the file FileName. + cRecorder(const char *FileName, const cChannel *Channel, int Priority); + // Creates a new recorder for the given Channel and + // the given Priority that will record into the file FileName. virtual ~cRecorder(); }; |