Ginga  0.13.6
 All Classes Namespaces Functions Variables
LDTLinkageDescriptor.h
1 /******************************************************************************
2 Este arquivo eh parte da implementacao do ambiente declarativo do middleware
3 Ginga (Ginga-NCL).
4 
5 Direitos Autorais Reservados (c) 1989-2007 PUC-Rio/Laboratorio TeleMidia
6 
7 Este programa eh software livre; voce pode redistribui-lo e/ou modificah-lo sob
8 os termos da Licenca Publica Geral GNU versao 2 conforme publicada pela Free
9 Software Foundation.
10 
11 Este programa eh distribuido na expectativa de que seja util, porem, SEM
12 NENHUMA GARANTIA; nem mesmo a garantia implicita de COMERCIABILIDADE OU
13 ADEQUACAO A UMA FINALIDADE ESPECIFICA. Consulte a Licenca Publica Geral do
14 GNU versao 2 para mais detalhes.
15 
16 Voce deve ter recebido uma copia da Licenca Publica Geral do GNU versao 2 junto
17 com este programa; se nao, escreva para a Free Software Foundation, Inc., no
18 endereco 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
19 
20 Para maiores informacoes:
21 ncl @ telemidia.puc-rio.br
22 http://www.ncl.org.br
23 http://www.ginga.org.br
24 http://www.telemidia.puc-rio.br
25 ******************************************************************************
26 This file is part of the declarative environment of middleware Ginga (Ginga-NCL)
27 
28 Copyright: 1989-2007 PUC-RIO/LABORATORIO TELEMIDIA, All Rights Reserved.
29 
30 This program is free software; you can redistribute it and/or modify it under
31 the terms of the GNU General Public License version 2 as published by
32 the Free Software Foundation.
33 //jumping reserved_future_use (first 4 bits of data[pos])
34 This program is distributed in the hope that it will be useful, but WITHOUT ANY
35 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
36 PARTICULAR PURPOSE. See the GNU General Public License version 2 for more
37 details.
38 
39 You should have received a copy of the GNU General Public License version 2
40 along with this program; if not, write to the Free Software
41 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
42 
43 For further information contact:
44 ncl @ telemidia.puc-rio.br
45 http://www.ncl.org.br
46 http://www.ginga.org.br
47 http://www.telemidia.puc-rio.br
48 *******************************************************************************/
49 
50 #ifndef LDTLINKAGEDESCRIPTOR_H_
51 #define LDTLINKAGEDESCRIPTOR_H_
52 
53 #include "IMpegDescriptor.h"
54 using namespace br::pucrio::telemidia::ginga::core::tsparser;
55 
56 #include <vector>
57 using namespace std;
58 
59 struct Description{
60  unsigned short descriptionId;
61  unsigned char descriptorType;
62  unsigned char userDefined;
63 };
64 
65 namespace br {
66 namespace pucrio {
67 namespace telemidia {
68 namespace ginga {
69 namespace core {
70 namespace tsparser {
71 namespace si {
72 namespace descriptors {
74  protected:
75  unsigned short originalServiceId;
76  unsigned short transportStreamId;
77  unsigned short originalNetworkdId;
78  //unsigned char descriptionsLength; //length of 'descriptions' array
79  //Description* descriptions;
80  vector<Description*>*descriptions;
81  public:
84  unsigned char getDescriptorTag();
85  unsigned int getDescriptorLength();
86  void print();
87  size_t process(char* data, size_t pos);
88  unsigned short getTSId();
89  unsigned short getOriginalNetworkId();
90  unsigned short getOriginalServideId();
91  //Description* getDescriptions();
92  vector<Description*>* getDescriptions();
93  //unsigned int getDescriptionLength();
94  unsigned char getDescriptorType(struct Description* description);
95  unsigned char getUserDefined(struct Description* description);
96  //unsigned char* getAllDescriptorType();
97  //unsigned char* getAllUserDefined();
98 
99 
100  };
101 
102 /* Values of descritptorType field of Description struct:
103 0x00 Reservado para uso futuro
104 0x01 Serviço de informação
105 0x02 Serviço de EPG
106 0x03 Serviço de substituição de CA
107 0x04 TS contendo network/buquê SI completo
108 0x05 Serviço de substituição de serviço
109 0x06 Serviço de radiodifusão de dados
110 0x07 - 0x7F Reservado para uso futuro
111 0x80 - 0xBF Definido pelo usuário
112 0xC0 - 0xFD Reservado para uso futuro (definido pelo grupo de
113 padronização)
114 0xFE Reservado para retransmissão
115 0xFF Reservado para uso futuro
116  *
117  *
118  *
119  */
120 }
121 }
122 }
123 }
124 }
125 }
126 }
127 }
128 
129 #endif /* LDTLINKAGEDESCRIPTOR_H_ */
Definition: LDTLinkageDescriptor.h:59