merge some code with enigma code
[enigma2.git] / lib / dvb_si / ac3_descriptor.cpp
1 /*
2  * $Id: ac3_descriptor.cpp,v 1.1 2003-10-17 15:36:37 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/ac3_descriptor.h>
23
24 Ac3Descriptor::Ac3Descriptor(const uint8_t * const buffer) : Descriptor(buffer)
25 {
26         if (buffer[1] >= 1)
27         {
28                 ac3TypeFlag = (buffer[2] >> 7) & 0x01;
29                 bsidFlag = (buffer[2] >> 6) & 0x01;
30                 mainidFlag = (buffer[2] >> 5) & 0x01;
31                 asvcFlag = (buffer[2] >> 4) & 0x01;
32                 reserved = buffer[2] & 0x0F;
33                 if (ac3TypeFlag == 1)
34                         ac3Type = buffer[3];
35
36                 if (bsidFlag == 1)
37                         bsid = buffer[ac3TypeFlag + 3];
38
39                 if (mainidFlag == 1)
40                         mainid = buffer[ac3TypeFlag + mainidFlag + 3];
41
42                 if (asvcFlag == 1)
43                         avsc = buffer[ac3TypeFlag + bsidFlag + mainidFlag + 3];
44                 
45                 if (descriptorLength > ac3TypeFlag + bsidFlag + mainidFlag + asvcFlag)
46                         for (uint16_t i = 0; i < descriptorLength - ac3TypeFlag - bsidFlag - mainidFlag - asvcFlag - 1; ++i)
47                                 additionalInfo.push_back(buffer[ac3TypeFlag + bsidFlag + mainidFlag + asvcFlag + i + 3]);
48         } else
49         {
50                 ac3TypeFlag = 0;
51                 bsidFlag = 0;
52                 mainidFlag = 0;
53                 asvcFlag = 0;
54                 reserved = 0;
55         }
56 }
57
58 uint8_t Ac3Descriptor::getAc3TypeFlag(void) const
59 {
60         return ac3TypeFlag;
61 }
62
63 uint8_t Ac3Descriptor::getBsidFlag(void) const
64 {
65         return bsidFlag;
66 }
67
68 uint8_t Ac3Descriptor::getMainidFlag(void) const
69 {
70         return mainidFlag;
71 }
72
73 uint8_t Ac3Descriptor::getAsvcFlag(void) const
74 {
75         return asvcFlag;
76 }
77
78 uint8_t Ac3Descriptor::getAc3Type(void) const
79 {
80         return ac3Type;
81 }
82
83 uint8_t Ac3Descriptor::getBsid(void) const
84 {
85         return bsid;
86 }
87
88 uint8_t Ac3Descriptor::getMainid(void) const
89 {
90         return mainid;
91 }
92
93 uint8_t Ac3Descriptor::getAvsc(void) const
94 {
95         return avsc;
96 }
97
98 const AdditionalInfoVector *Ac3Descriptor::getAdditionalInfo(void) const
99 {
100         return &additionalInfo;
101 }
102