Fixed a bug in libsi's SubtitlingDescriptor::getLength()

This commit is contained in:
Klaus Schmidinger
2005-05-06 09:00:36 +02:00
parent 1c62f19c8c
commit 6db0e99996
3 changed files with 5 additions and 2 deletions

View File

@@ -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: