summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-10-17 12:22:56 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-10-17 12:22:56 +0200
commit501ffe50086d7cd5559cbf4c31c150228236a88a (patch)
treeef6faa0f07343d667f2a06116d3c224333500211 /channels.h
parent30dfd2e7019b9727ca761440b1ec4fe511a1143a (diff)
downloadvdr-501ffe50086d7cd5559cbf4c31c150228236a88a.tar.gz
vdr-501ffe50086d7cd5559cbf4c31c150228236a88a.tar.bz2
Removed the 'Log' parameter from the cChannel::Set... functions
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/channels.h b/channels.h
index 23a8fa13..666e91b6 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.18 2004/10/17 10:33:38 kls Exp $
+ * $Id: channels.h 1.19 2004/10/17 11:52:07 kls Exp $
*/
#ifndef __CHANNELS_H
@@ -167,11 +167,11 @@ public:
bool IsTerr(void) const { return (source & cSource::st_Mask) == cSource::stTerr; }
tChannelID GetChannelID(void) const;
int Modification(int Mask = CHANNELMOD_ALL);
- bool SetSatTransponderData(int Source, int Frequency, char Polarization, int Srate, int CoderateH, bool Log = true);
- bool SetCableTransponderData(int Source, int Frequency, int Modulation, int Srate, int CoderateH, bool Log = true);
- bool SetTerrTransponderData(int Source, int Frequency, int Bandwidth, int Modulation, int Hierarchy, int CodeRateH, int CodeRateL, int Guard, int Transmission, bool Log = true);
- void SetId(int Nid, int Tid, int Sid, int Rid = 0, bool Log = true);
- void SetName(const char *Name, bool Log = true);
+ bool SetSatTransponderData(int Source, int Frequency, char Polarization, int Srate, int CoderateH);
+ bool SetCableTransponderData(int Source, int Frequency, int Modulation, int Srate, int CoderateH);
+ bool SetTerrTransponderData(int Source, int Frequency, int Bandwidth, int Modulation, int Hierarchy, int CodeRateH, int CodeRateL, int Guard, int Transmission);
+ void SetId(int Nid, int Tid, int Sid, int Rid = 0);
+ void SetName(const char *Name);
void SetPids(int Vpid, int Ppid, int *Apids, char ALangs[][4], int *Dpids, char DLangs[][4], int Tpid);
void SetCaIds(const int *CaIds); // list must be zero-terminated
void SetCaDescriptors(int Level);