summaryrefslogtreecommitdiff
path: root/eepg.h
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2012-05-18 16:53:52 +0200
committerDimitar Petrovski <dimeptr@gmail.com>2012-05-18 16:53:52 +0200
commit8f360572204b983ee963678359498a0ad2b8848a (patch)
treeaa73d86ec89d75aca9b1ceb4cd7da9a92a35b9a4 /eepg.h
parent6d0336431c938a8a04f3fae809fa3e233de5612e (diff)
downloadvdr-plugin-eepg-8f360572204b983ee963678359498a0ad2b8848a.tar.gz
vdr-plugin-eepg-8f360572204b983ee963678359498a0ad2b8848a.tar.bz2
use equivalents map for all equivalents
Diffstat (limited to 'eepg.h')
-rw-r--r--eepg.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/eepg.h b/eepg.h
index d306ca0..b661809 100644
--- a/eepg.h
+++ b/eepg.h
@@ -7,7 +7,7 @@
#define MAX_CHANNELS 2048
#define MAX_TITLES 262144
-#define MAX_EQUIVALENCES 8 //the number of equivalences one channel can have
+//#define MAX_EQUIVALENCES 8 //the number of equivalences one channel can have
//Formats (need to be consecutively numbered):
//#define PREMIERE 0
@@ -53,11 +53,11 @@ typedef struct
{
unsigned short int ChannelId;
unsigned short int SkyNumber;
- unsigned short int NumberOfEquivalences;//original channel sets this value to 1, every equivalent channel adds 1
- unsigned int Src[MAX_EQUIVALENCES];
- unsigned short int Nid[MAX_EQUIVALENCES];
- unsigned short int Tid[MAX_EQUIVALENCES];
- unsigned short int Sid[MAX_EQUIVALENCES];
+ //unsigned short int NumberOfEquivalences;//original channel sets this value to 1, every equivalent channel adds 1
+ unsigned int Src;//[MAX_EQUIVALENCES];
+ unsigned short int Nid;//[MAX_EQUIVALENCES];
+ unsigned short int Tid;//[MAX_EQUIVALENCES];
+ unsigned short int Sid;//[MAX_EQUIVALENCES];
unsigned char Name[64];
} sChannel;