diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-03-05 15:22:38 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-03-05 15:22:38 +0100 |
commit | 8ae3142f945aba1166654452e319e3ac361b6356 (patch) | |
tree | b8cef6f7cbba7f84104668e993cf37030f4cd84a /libsi | |
parent | ad557ab2142bf9969cfa67bc433ed3045b6d822e (diff) | |
download | vdr-8ae3142f945aba1166654452e319e3ac361b6356.tar.gz vdr-8ae3142f945aba1166654452e319e3ac361b6356.tar.bz2 |
Fixed some descriptor handling in 'libsi'
Diffstat (limited to 'libsi')
-rw-r--r-- | libsi/descriptor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsi/descriptor.c b/libsi/descriptor.c index 0b0019f8..b552ae7c 100644 --- a/libsi/descriptor.c +++ b/libsi/descriptor.c @@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: descriptor.c 1.6 2004/02/22 11:11:36 kls Exp $ + * $Id: descriptor.c 1.7 2004/03/05 15:17:33 kls Exp $ * * ***************************************************************************/ @@ -148,7 +148,7 @@ void TimeShiftedEventDescriptor::Parse() { void ContentDescriptor::Parse() { //this descriptor is only a header and a loop - nibbleLoop.setData(data+sizeof(SectionHeader), getLength()-sizeof(SectionHeader)); + nibbleLoop.setData(data+sizeof(descr_content), getLength()-sizeof(descr_content)); } int ContentDescriptor::Nibble::getContentNibbleLevel1() const { @@ -173,7 +173,7 @@ void ContentDescriptor::Nibble::Parse() { void ParentalRatingDescriptor::Parse() { //this descriptor is only a header and a loop - ratingLoop.setData(data+sizeof(SectionHeader), getLength()-sizeof(SectionHeader)); + ratingLoop.setData(data+sizeof(descr_parental_rating), getLength()-sizeof(descr_parental_rating)); } int ParentalRatingDescriptor::Rating::getRating() const { |