- install missing files
[enigma2.git] / lib / dvb_si / vbi_data_descriptor.cpp
1 /*
2  * $Id: vbi_data_descriptor.cpp,v 1.1 2003-10-17 15:36:38 tmbinc Exp $
3  *
4  * (C) 2002-2003 Andreas Oberritter <obi@saftware.de>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  */
21
22 #include <lib/dvb_si/vbi_data_descriptor.h>
23
24 VbiDataLine::VbiDataLine(const uint8_t * const buffer)
25 {
26         reserved = (buffer[0] >> 6) & 0x03;
27         fieldParity = (buffer[0] >> 5) & 0x01;
28         lineOffset = buffer[0] & 0x1F;
29 }
30
31 uint8_t VbiDataLine::getFieldParity(void) const
32 {
33         return fieldParity;
34 }
35
36 uint8_t VbiDataLine::getLineOffset(void) const
37 {
38         return lineOffset;
39 }
40
41 VbiDataService::VbiDataService(const uint8_t * const buffer)
42 {
43         uint16_t i;
44
45         dataServiceId = buffer[0];
46         dataServiceDescriptorLength = buffer[1];
47
48         switch (dataServiceId) {
49         case 0x01:
50         case 0x02:
51         case 0x04:
52         case 0x05:
53         case 0x06:
54         case 0x07:
55                 for (i = 0; i < dataServiceDescriptorLength; ++i);
56                         vbiDataLines.push_back(new VbiDataLine(&buffer[i + 2]));
57                 break;
58
59         default:
60                 for (i = 0; i < dataServiceDescriptorLength; ++i)
61                         reserved.push_back(buffer[i + 2]);
62                 break;
63         }
64 }
65
66 VbiDataService::~VbiDataService(void)
67 {
68         for (VbiDataLineIterator i = vbiDataLines.begin(); i != vbiDataLines.end(); ++i)
69                 delete *i;
70 }
71
72 uint8_t VbiDataService::getDataServiceId(void) const
73 {
74         return dataServiceId;
75 }
76
77 const VbiDataLineVector *VbiDataService::getVbiDataLines(void) const
78 {
79         return &vbiDataLines;
80 }
81
82 VbiDataDescriptor::VbiDataDescriptor(const uint8_t * const buffer) : Descriptor(buffer)
83 {
84         for (uint16_t i = 0; i < descriptorLength; i += buffer[i + 3] + 2)
85                 vbiDataServices.push_back(new VbiDataService(&buffer[i + 2]));
86 }
87
88 VbiDataDescriptor::~VbiDataDescriptor(void)
89 {
90         for (VbiDataServiceIterator i = vbiDataServices.begin(); i != vbiDataServices.end(); ++i)
91                 delete *i;
92 }
93
94 const VbiDataServiceVector *VbiDataDescriptor::getVbiDataServices(void) const
95 {
96         return &vbiDataServices;
97 }
98