diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-02-22 13:08:04 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-02-22 13:08:04 +0100 |
commit | 45eac6d94694aa9081bdd0e06794942c49818ff1 (patch) | |
tree | aade606ef3dd0698faabcc7a2eacef1134b85771 /libsi/si.c | |
parent | 1601918327b72a75b5e5e81405c725ae923f7515 (diff) | |
download | vdr-45eac6d94694aa9081bdd0e06794942c49818ff1.tar.gz vdr-45eac6d94694aa9081bdd0e06794942c49818ff1.tar.bz2 |
Added PDCDescriptor handling to 'libsi'
Diffstat (limited to 'libsi/si.c')
-rw-r--r-- | libsi/si.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: si.c 1.7 2004/02/20 13:46:12 kls Exp $ + * $Id: si.c 1.8 2004/02/22 10:14:12 kls Exp $ * * ***************************************************************************/ @@ -334,6 +334,9 @@ Descriptor *Descriptor::getDescriptor(CharArray da, DescriptorTagDomain domain) case ISO639LanguageDescriptorTag: d=new ISO639LanguageDescriptor(); break; + case PDCDescriptorTag: + d=new PDCDescriptor(); + break; //note that it is no problem to implement one //of the unimplemented descriptors. @@ -375,7 +378,6 @@ Descriptor *Descriptor::getDescriptor(CharArray da, DescriptorTagDomain domain) case CaSystemDescriptorTag: case AC3DescriptorTag: case DSNGDescriptorTag: - case PDCDescriptorTag: case AncillaryDataDescriptorTag: case AnnouncementSupportDescriptorTag: case AdaptationFieldDataDescriptorTag: |