diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-06 09:00:36 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-06 09:00:36 +0200 |
commit | 6db0e99996db866ae7d611d1bdc5c285fc03b14e (patch) | |
tree | 912ab40764260fa4832a80c2b36c664333404a72 | |
parent | 1c62f19c8ca1f6b5f3551f1416b5ee34b548e4ed (diff) | |
download | vdr-6db0e99996db866ae7d611d1bdc5c285fc03b14e.tar.gz vdr-6db0e99996db866ae7d611d1bdc5c285fc03b14e.tar.bz2 |
Fixed a bug in libsi's SubtitlingDescriptor::getLength()
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | libsi/descriptor.h | 4 |
3 files changed, 5 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 0277283d..5b3c7239 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1162,6 +1162,7 @@ Marco Schlüßler <marco@lordzodiac.de> with the larger buffer reserve for adding support for setting the video display mode for fixing handling transparent areas in cDvbSpuBitmap + for fixing a bug in libsi's SubtitlingDescriptor::getLength() Jürgen Schmitz <j.schmitz@web.de> for reporting a bug in displaying the current channel when switching via the SVDRP @@ -3489,3 +3489,5 @@ Video Disk Recorder Revision History listing it via LSTE (thanks to Roman Krenický). - Fixed handling fragments of less than 3 byte in cPesAssembler (thanks to Reinhard Nissl). +- Fixed a bug in libsi's SubtitlingDescriptor::getLength() (thanks to Marco + Schlüßler). diff --git a/libsi/descriptor.h b/libsi/descriptor.h index 94959231..d17921c2 100644 --- a/libsi/descriptor.h +++ b/libsi/descriptor.h @@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: descriptor.h 1.10 2004/06/06 13:51:29 kls Exp $ + * $Id: descriptor.h 1.11 2005/05/06 08:57:53 kls Exp $ * * ***************************************************************************/ @@ -289,7 +289,7 @@ public: int getSubtitlingType() const; int getCompositionPageId() const; int getAncillaryPageId() const; - virtual int getLength() { return sizeof(item_nvod_reference); } + virtual int getLength() { return sizeof(item_subtitling); } protected: virtual void Parse(); private: |