diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2011-09-22 19:48:39 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2011-09-22 19:48:39 +0200 |
commit | d826a6882e10a69336aa6c751e6822eada604100 (patch) | |
tree | 6cafbe8ef31bd1330695a4461986bcfaeb51503e | |
parent | 3c9b4d23704e9460e7c3a0d5baa2c9d32feee116 (diff) | |
download | vdr-plugin-eepg-d826a6882e10a69336aa6c751e6822eada604100.tar.gz vdr-plugin-eepg-d826a6882e10a69336aa6c751e6822eada604100.tar.bz2 |
added missing setShortData
-rw-r--r-- | dish.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -266,6 +266,18 @@ namespace SI } } + void DishDescriptor::setShortData(unsigned char Tid, CharArray data) + { + Decompress(Tid, data); + if (decompressed) { + name = new string((char*)decompressed); + delete[] decompressed; + decompressed = NULL; + } else { + name = new string(); + } + } + void DishDescriptor::setExtendedtData(unsigned char Tid, CharArray data) { Decompress(Tid, data); |