diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2021-05-21 09:38:34 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2021-05-21 09:38:34 +0200 |
commit | 505bcee9268750388547be0ab5c0527d1bd851b5 (patch) | |
tree | 644263371ef0ca172cb8a66ccddf26da4857188a /channels.h | |
parent | c02c081d917df2ca2b11aa165c8f825bb126a2b9 (diff) | |
download | vdr-505bcee9268750388547be0ab5c0527d1bd851b5.tar.gz vdr-505bcee9268750388547be0ab5c0527d1bd851b5.tar.bz2 |
The transponder value of channels is now cached
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 5.1 2021/01/14 10:29:05 kls Exp $ + * $Id: channels.h 5.2 2021/05/21 09:38:34 kls Exp $ */ #ifndef __CHANNELS_H @@ -96,6 +96,7 @@ private: char *portalName; int __BeginData__; int frequency; // MHz + mutable int transponder; // cached value int source; int srate; int vpid; |