libdvbv5 1.26.1
Library to work with Digital TV devices on Linux
pmt.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2011-2012 - Mauro Carvalho Chehab
3 * Copyright (c) 2012 - Andre Roth <neolynx@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published by
7 * the Free Software Foundation version 2.1 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 * Or, point your browser to http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
18 *
19 */
20
39#ifndef _PMT_H
40#define _PMT_H
41
42#include <stdint.h>
43#include <unistd.h> /* ssize_t */
44
45#include <libdvbv5/header.h>
46
52#define DVB_TABLE_PMT 0x02
53
135};
136
141extern const char *pmt_stream_name[];
142
167 uint8_t type;
168 union {
169 uint16_t bitfield;
170 struct {
171 uint16_t elementary_pid:13;
172 uint16_t reserved:3;
173 } __attribute__((packed));
174 } __attribute__((packed));
175 union {
176 uint16_t bitfield2;
177 struct {
178 uint16_t desc_length:10;
179 uint16_t zero:2;
180 uint16_t reserved2:4;
181 } __attribute__((packed));
182 } __attribute__((packed));
185} __attribute__((packed));
186
210 union {
211 uint16_t bitfield;
212 struct {
213 uint16_t pcr_pid:13;
214 uint16_t reserved2:3;
215 } __attribute__((packed));
216 } __attribute__((packed));
217
218 union {
219 uint16_t bitfield2;
220 struct {
221 uint16_t desc_length:10;
222 uint16_t zero3:2;
223 uint16_t reserved3:4;
224 } __attribute__((packed));
225 } __attribute__((packed));
228} __attribute__((packed));
229
231#define dvb_pmt_field_first header
232
234#define dvb_pmt_field_last descriptor
235
243#define dvb_pmt_stream_foreach(_stream, _pmt) \
244 if (_pmt && _pmt->stream) \
245 for (struct dvb_table_pmt_stream *_stream = _pmt->stream; _stream; _stream = _stream->next) \
246
247struct dvb_v5_fe_parms;
248
249#ifdef __cplusplus
250extern "C" {
251#endif
252
269ssize_t dvb_table_pmt_init (struct dvb_v5_fe_parms *parms, const uint8_t *buf,
270 ssize_t buflen, struct dvb_table_pmt **table);
271
279
288 const struct dvb_table_pmt *table);
289
290#ifdef __cplusplus
291}
292#endif
293
294#endif
const char * pmt_stream_name[]
Converts from enum dvb_streams into a string.
void dvb_table_pmt_print(struct dvb_v5_fe_parms *parms, const struct dvb_table_pmt *table)
Prints the content of the PAT table.
void dvb_table_pmt_free(struct dvb_table_pmt *table)
Frees all data allocated by the PMT table parser.
ssize_t dvb_table_pmt_init(struct dvb_v5_fe_parms *parms, const uint8_t *buf, ssize_t buflen, struct dvb_table_pmt **table)
Initializes and parses PMT table.
Provides the MPEG TS table headers.
dvb_streams
Definition pmt.h:100
@ stream_audio_a52_vls
Definition pmt.h:132
@ stream_14496_1_iso
ISO/IEC 14496-1 SL-packetized stream or FlexMux stream carried in ISO/IEC14496_sections.
Definition pmt.h:119
@ stream_audio_dts
Definition pmt.h:131
@ stream_h222
ITU-T Rec.
Definition pmt.h:108
@ stream_audio_latm
ISO/IEC 14496-3 Audio with the LATM transport syntax as defined in ISO/IEC 14496-3 / AMD 1.
Definition pmt.h:117
@ stream_13818_6_C
ISO/IEC 13818-6 type C.
Definition pmt.h:112
@ stream_audio_sdds
Definition pmt.h:128
@ stream_14496_1_pes
ISO/IEC 14496-1 SL-packetized stream or FlexMux stream carried in PES packets.
Definition pmt.h:118
@ stream_download
ISO/IEC 13818-6 Synchronized Download Protocol.
Definition pmt.h:120
@ stream_video_moto
Definition pmt.h:125
@ stream_h222_aux
ITU-T Rec.
Definition pmt.h:114
@ stream_audio_adts
ISO/IEC 13818-7 Audio with ADTS transport syntax.
Definition pmt.h:115
@ stream_video_h264
Definition pmt.h:121
@ stream_audio_13818_3
ISO/IEC 13818-3 Audio.
Definition pmt.h:104
@ stream_audio_14496_3
Definition pmt.h:122
@ stream_audio_dts_hdmv
Definition pmt.h:129
@ stream_scte_27
Definition pmt.h:127
@ stream_13818_6_A
ISO/IEC 13818-6 type A.
Definition pmt.h:110
@ stream_13818_6_B
ISO/IEC 13818-6 type B.
Definition pmt.h:111
@ stream_audio_e_ac3
Definition pmt.h:130
@ stream_private_sections
ITU-T Rec.
Definition pmt.h:105
@ stream_video_cavs
Definition pmt.h:124
@ stream_audio_a52
Definition pmt.h:126
@ stream_private_data
ITU-T Rec.
Definition pmt.h:106
@ stream_h222_1
ITU-T Rec.
Definition pmt.h:109
@ stream_spu_vls
Definition pmt.h:133
@ stream_video_hevc
Definition pmt.h:123
@ stream_audio_sdds2
Definition pmt.h:134
@ stream_video_h262
ITU-T Rec.
Definition pmt.h:102
@ stream_video_14496_2
ISO/IEC 14496-2 Visual.
Definition pmt.h:116
@ stream_mheg
ISO/IEC 13522 MHEG.
Definition pmt.h:107
@ stream_audio
ISO/IEC 11172 Audio.
Definition pmt.h:103
@ stream_13818_6_D
ISO/IEC 13818-6 type D.
Definition pmt.h:113
@ stream_video
ISO/IEC 11172 Video.
Definition pmt.h:101
Linked list containing the several descriptors found on a MPEG-TS table.
Header of a MPEG-TS table.
Definition header.h:103
MPEG-TS PMT stream table.
Definition pmt.h:166
uint16_t reserved2
Definition pmt.h:180
struct dvb_desc * descriptor
Definition pmt.h:183
uint16_t reserved
Definition pmt.h:172
uint16_t elementary_pid
Definition pmt.h:171
uint16_t zero
Definition pmt.h:179
uint16_t bitfield2
Definition pmt.h:176
struct dvb_table_pmt_stream * next
Definition pmt.h:184
uint16_t bitfield
Definition pmt.h:169
uint16_t desc_length
Definition pmt.h:178
MPEG-TS PMT table.
Definition pmt.h:208
uint16_t reserved2
Definition pmt.h:214
struct dvb_table_pmt_stream * stream
Definition pmt.h:227
uint16_t bitfield2
Definition pmt.h:219
uint16_t zero3
Definition pmt.h:222
uint16_t bitfield
Definition pmt.h:211
struct dvb_desc * descriptor
Definition pmt.h:226
struct dvb_table_header header
Definition pmt.h:209
uint16_t reserved3
Definition pmt.h:223
uint16_t pcr_pid
Definition pmt.h:213
uint16_t desc_length
Definition pmt.h:221
Keeps data needed to handle the DVB frontend.
Definition dvb-fe.h:117