diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2011-10-13 20:40:14 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2011-10-13 20:40:14 +0200 |
commit | 8bab540df87c3f38369c772fd956f85cd655cf6e (patch) | |
tree | 85141a4610957994d77076bb8aba748aa3b03a66 /dish.h | |
parent | cb5620b02a6cacbb38096e23f57e929bf07b722c (diff) | |
download | vdr-plugin-eepg-8bab540df87c3f38369c772fd956f85cd655cf6e.tar.gz vdr-plugin-eepg-8bab540df87c3f38369c772fd956f85cd655cf6e.tar.bz2 |
test merge branches
Diffstat (limited to 'dish.h')
-rw-r--r-- | dish.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -10,6 +10,8 @@ #ifndef LIBSI_DISH_H #define LIBSI_DISH_H +#include <vdr/tools.h> + namespace SI { @@ -243,7 +245,7 @@ class UnimplementedDescriptor; class DishDescriptor { public: - DishDescriptor(UnimplementedDescriptor*); + DishDescriptor(); virtual ~DishDescriptor(); const char* getText(void) const { return text; } @@ -251,12 +253,11 @@ public: const char* getTheme(int contentNibleLvl2); const char* getCategory(int userNible); // Decompress the byte arrary and stores the result to a text string - void Decompress(unsigned char Tid); + void Decompress(unsigned char Tid, CharArray data); protected: const char* text; // name or description of the event const char* shortText; // usually the episode name unsigned char* decompressed; - UnimplementedDescriptor* unimplementedDesc; struct HuffmanTable { unsigned int startingAddress; |