diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-06-02 13:22:53 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-06-02 13:22:53 +0200 |
commit | eec6b1d818a4a568ca6def00565beed8c301ecab (patch) | |
tree | 286d5b390a9be0ff4b5c74a31c265edc55590ba1 /receiver.c | |
parent | 68d5e7b548635fa8506cc8d4029abf326058e6b0 (diff) | |
download | vdr-eec6b1d818a4a568ca6def00565beed8c301ecab.tar.gz vdr-eec6b1d818a4a568ca6def00565beed8c301ecab.tar.bz2 |
Finally removed the code marked with __RECORDING_H_DEPRECATED_DIRECT_MEMBER_ACCESS and LEGACY_CRECEIVER
Diffstat (limited to 'receiver.c')
-rw-r--r-- | receiver.c | 16 |
1 files changed, 1 insertions, 15 deletions
@@ -4,27 +4,13 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: receiver.c 2.6 2012/03/31 10:15:26 kls Exp $ + * $Id: receiver.c 2.7 2012/06/02 13:20:38 kls Exp $ */ #include "receiver.h" #include <stdio.h> #include "tools.h" -#ifdef LEGACY_CRECEIVER -cReceiver::cReceiver(tChannelID ChannelID, int Priority, int Pid, const int *Pids1, const int *Pids2, const int *Pids3) -{ - device = NULL; - channelID = ChannelID; - priority = constrain(Priority, MINPRIORITY, MAXPRIORITY); - numPids = 0; - AddPid(Pid); - AddPids(Pids1); - AddPids(Pids2); - AddPids(Pids3); -} -#endif - cReceiver::cReceiver(const cChannel *Channel, int Priority) { device = NULL; |