libdvbv5
1.16.3
Library to work with Digital TV devices on Linux
lib
include
libdvbv5
desc_network_name.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2011-2014 - 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
37
#ifndef _DESC_NETWORK_NAME_H
38
#define _DESC_NETWORK_NAME_H
39
40
#include <
libdvbv5/descriptors.h
>
41
57
struct
dvb_desc_network_name
{
58
uint8_t
type
;
59
uint8_t
length
;
60
struct
dvb_desc
*
next
;
61
62
char
*
network_name
;
63
char
*
network_name_emph
;
64
} __attribute__((packed));
65
66
struct
dvb_v5_fe_parms
;
67
68
#ifdef __cplusplus
69
extern
"C"
{
70
#endif
71
87
int
dvb_desc_network_name_init
(
struct
dvb_v5_fe_parms
*parms,
88
const
uint8_t *buf,
struct
dvb_desc
*desc);
89
97
void
dvb_desc_network_name_print
(
struct
dvb_v5_fe_parms
*parms,
98
const
struct
dvb_desc
*desc);
99
106
void
dvb_desc_network_name_free
(
struct
dvb_desc
*desc);
107
108
#ifdef __cplusplus
109
}
110
#endif
111
112
#endif
dvb_desc_network_name::next
struct dvb_desc * next
Definition:
desc_network_name.h:60
dvb_desc_network_name::length
uint8_t length
Definition:
desc_network_name.h:59
dvb_desc_network_name::network_name_emph
char * network_name_emph
Definition:
desc_network_name.h:63
dvb_desc_network_name_init
int dvb_desc_network_name_init(struct dvb_v5_fe_parms *parms, const uint8_t *buf, struct dvb_desc *desc)
Initializes and parses the network name descriptor.
dvb_desc_network_name_print
void dvb_desc_network_name_print(struct dvb_v5_fe_parms *parms, const struct dvb_desc *desc)
Prints the content of the network name descriptor.
dvb_v5_fe_parms
Keeps data needed to handle the DVB frontend.
Definition:
dvb-fe.h:117
dvb_desc_network_name::type
uint8_t type
Definition:
desc_network_name.h:58
dvb_desc_network_name::network_name
char * network_name
Definition:
desc_network_name.h:62
dvb_desc_network_name
Struct containing the network name descriptor.
Definition:
desc_network_name.h:57
dvb_desc_network_name_free
void dvb_desc_network_name_free(struct dvb_desc *desc)
Frees all data allocated by the network name descriptor.
descriptors.h
Provides a way to handle MPEG-TS descriptors found on Digital TV streams.
dvb_desc
Linked list containing the several descriptors found on a MPEG-TS table.
Definition:
descriptors.h:117
Generated by
1.8.20