diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-11-01 15:47:59 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-11-01 15:47:59 +0100 |
commit | cfb37a7edf8caafb0f07594b080837231ba9c575 (patch) | |
tree | d92e4c39377e735feec619205d1642730ac0ff62 /libsi/si.c | |
parent | 4f50c34824f0c717dd52e0ce32497b7f421c1c66 (diff) | |
download | vdr-cfb37a7edf8caafb0f07594b080837231ba9c575.tar.gz vdr-cfb37a7edf8caafb0f07594b080837231ba9c575.tar.bz2 |
Added support for "registration descriptor"
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 2.2 2010/02/13 10:31:52 kls Exp $ + * $Id: si.c 2.3 2010/11/01 15:24:32 kls Exp $ * * ***************************************************************************/ @@ -606,6 +606,9 @@ Descriptor *Descriptor::getDescriptor(CharArray da, DescriptorTagDomain domain, case ExtensionDescriptorTag: d=new ExtensionDescriptor(); break; + case RegistrationDescriptorTag: + d=new RegistrationDescriptor(); + break; //note that it is no problem to implement one //of the unimplemented descriptors. @@ -614,7 +617,6 @@ Descriptor *Descriptor::getDescriptor(CharArray da, DescriptorTagDomain domain, case VideoStreamDescriptorTag: case AudioStreamDescriptorTag: case HierarchyDescriptorTag: - case RegistrationDescriptorTag: case DataStreamAlignmentDescriptorTag: case TargetBackgroundGridDescriptorTag: case VideoWindowDescriptorTag: |