diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-12 22:19:34 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-12 22:19:34 +0100 |
commit | 2a11c183b5cd6700edb89cf94515b8390a5f8a7a (patch) | |
tree | a280807ca2d8ff265d1d81c3fcf9c130443e11ac /libsi/si.c | |
parent | 89ecc6b4527740bb4307602dc5fb5416d5c40cfc (diff) | |
download | vdr-2a11c183b5cd6700edb89cf94515b8390a5f8a7a.tar.gz vdr-2a11c183b5cd6700edb89cf94515b8390a5f8a7a.tar.bz2 |
Added LinkageDescriptor 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.4 2004/01/05 11:04:17 kls Exp $ + * $Id: si.c 1.5 2004/01/12 22:19:34 kls Exp $ * * ***************************************************************************/ @@ -320,6 +320,9 @@ Descriptor *Descriptor::getDescriptor(CharArray da, DescriptorTagDomain domain) case ApplicationSignallingDescriptorTag: d=new ApplicationSignallingDescriptor(); break; + case LinkageDescriptorTag: + d=new LinkageDescriptor(); + break; //note that it is no problem to implement one //of the unimplemented descriptors. @@ -348,7 +351,6 @@ Descriptor *Descriptor::getDescriptor(CharArray da, DescriptorTagDomain domain) case VBITeletextDescriptorTag: case CountryAvailabilityDescriptorTag: case MocaicDescriptorTag: - case LinkageDescriptorTag: case TeletextDescriptorTag: case TelephoneDescriptorTag: case LocalTimeOffsetDescriptorTag: |