diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2015-03-13 12:12:33 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2015-03-13 12:12:33 +0100 |
commit | 70eb639c417b46bc7bac205069feb755e9ade96e (patch) | |
tree | fe63cb23abdbcb1a5ae104f779dafde7f05fcf87 /channels.h | |
parent | 52b1e2a9ff81edd447de9d721f3df86f8380bc78 (diff) | |
download | vdr-70eb639c417b46bc7bac205069feb755e9ade96e.tar.gz vdr-70eb639c417b46bc7bac205069feb755e9ade96e.tar.bz2 |
Fixed setting the source value of newly created channels, in case the NIT is received from a different, but very close satellite position
Diffstat (limited to 'channels.h')
-rw-r--r-- | channels.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: channels.h 3.3 2015/02/01 13:30:26 kls Exp $ + * $Id: channels.h 4.1 2015/03/13 11:20:50 kls Exp $ */ #ifndef __CHANNELS_H @@ -193,6 +193,7 @@ public: time_t Seen(void) { return seen; } void CopyTransponderData(const cChannel *Channel); bool SetTransponderData(int Source, int Frequency, int Srate, const char *Parameters, bool Quiet = false); + void SetSource(int Source); void SetId(int Nid, int Tid, int Sid, int Rid = 0); void SetLcn(int Lcn); void SetName(const char *Name, const char *ShortName, const char *Provider); |