diff options
author | Jochen Dolze <vdr@dolze.de> | 2011-01-03 20:22:04 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2011-01-03 20:22:04 +0100 |
commit | 6d94396a7088c0b33aea1838e7cc91053eef15c6 (patch) | |
tree | 872bf00cac6361b19b08354b7a1035761563550e /maps.h | |
parent | 83cf2436ce3f2ed9ce4e0a0847b10d5144907061 (diff) | |
download | vdr-plugin-xmltv2vdr-6d94396a7088c0b33aea1838e7cc91053eef15c6.tar.gz vdr-plugin-xmltv2vdr-6d94396a7088c0b33aea1838e7cc91053eef15c6.tar.bz2 |
Fixed bugs in xmltv format processing
Added more options (still not working)
Diffstat (limited to 'maps.h')
-rw-r--r-- | maps.h | 33 |
1 files changed, 19 insertions, 14 deletions
@@ -17,22 +17,27 @@ // Bit 24-30 OPT_ flags // Bit 31 always zero -#define USE_NOTHING 0 +#define USE_NOTHING 0 -#define USE_SHORTTEXT 0x1 -#define USE_LONGTEXT 0x2 -#define USE_COUNTRYDATE 0x4 -#define USE_ORIGTITLE 0x8 -#define USE_CATEGORY 0x10 -#define USE_CREDITS 0x20 -#define USE_RATING 0x40 -#define USE_REVIEW 0x80 -#define USE_VIDEO 0x100 -#define USE_AUDIO 0x200 +#define USE_SHORTTEXT 0x1 +#define USE_LONGTEXT 0x2 +#define USE_COUNTRYDATE 0x4 +#define USE_ORIGTITLE 0x8 +#define USE_CATEGORY 0x10 +#define USE_CREDITS 0x20 +#define USE_RATING 0x40 +#define USE_REVIEW 0x80 +#define USE_VIDEO 0x100 +#define USE_AUDIO 0x200 -#define OPT_MERGELTEXT 0x10000000 -#define OPT_VPS 0x20000000 -#define OPT_APPEND 0x40000000 +#define CREDITS_ACTORS 0x100000 +#define CREDITS_DIRECTOR 0x200000 +#define CREDITS_OTHER 0x400000 +#define CREDITS_ACTORS_LIST 0x800000 + +#define OPT_MERGELTEXT 0x10000000 +#define OPT_VPS 0x20000000 +#define OPT_APPEND 0x40000000 class cTEXTMapping : public cListObject { |