summaryrefslogtreecommitdiffstats
path: root/kaffeine/src/input/dvb/lib/libucsi/dvb/content_identifier_descriptor.h
blob: 63d24a1991b632f3211a592cdfd4eb8c3246b67d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
 * section and descriptor parser
 *
 * Copyright (C) 2005 Kenneth Aafloy (kenneth@linuxtv.org)
 * Copyright (C) 2005 Andrew de Quincey (adq_dvb@lidskialf.net)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 */

#ifndef _UCSI_DVB_CONTENT_IDENTIFIER_DESCRIPTOR
#define _UCSI_DVB_CONTENT_IDENTIFIER_DESCRIPTOR 1

#ifdef __cplusplus
extern "C"
{
#endif

#include <libucsi/descriptor.h>
#include <libucsi/endianops.h>
#include <libucsi/types.h>


/**
 * Possible values for the crid_type.
 */
enum {
	DVB_CRID_TYPE_NONE		= 0x00,
	DVB_CRID_TYPE_ITEM		= 0x01,
	DVB_CRID_TYPE_SERIES		= 0x02,
	DVB_CRID_TYPE_RECOMMENDATION	= 0x03
};

/**
 * Possible values for the crid_location.
 */
enum {
	DVB_CRID_LOCATION_THIS_DESCRIPTOR	= 0x00,
	DVB_CRID_LOCATION_CIT			= 0x01
};

/**
 * dvb_content_identifier_descriptor structure.
 */
struct dvb_content_identifier_descriptor {
	struct descriptor d;

	/* struct dvb_content_identifier_entry entries[] */
} __ucsi_packed;

/**
 * An entry in the entries field of a dvb_content_identifier_descriptor.
 */
struct dvb_content_identifier_entry {
  EBIT2(uint8_t crid_type		: 6; ,
	uint8_t crid_location		: 2; )
	/* struct dvb_content_identifier_data_00 data0 */
	/* struct dvb_content_identifier_data_01 data1 */
} __ucsi_packed;

/**
 * The data if crid_location == 0
 */
struct dvb_content_identifier_entry_data_0 {
	uint8_t crid_length;
	/* uint8_t data[] */
} __ucsi_packed;

/**
 * The data if crid_location == 1
 */
struct dvb_content_identifier_entry_data_1 {
	uint16_t crid_ref;
} __ucsi_packed;


/**
 * Process a dvb_content_identifier_descriptor.
 *
 * @param d Generic descriptor.
 * @return dvb_content_identifier_descriptor pointer, or NULL on error.
 */
static inline struct dvb_content_identifier_descriptor*
	dvb_content_identifier_descriptor_codec(struct descriptor* d)
{
	uint32_t len = d->len + 2;
	uint32_t pos = 2;
	uint8_t *buf = (uint8_t*) d;

	while(pos < len) {
		struct dvb_content_identifier_entry *e =
			(struct dvb_content_identifier_entry*) (buf + pos);

		if (len < (pos+1))
			return NULL;
		pos++;

		switch(e->crid_location) {
		case 0:
			if (len < (pos + 1))
				return NULL;
			if (len < (pos + 1 + buf[pos]))
				return NULL;
			pos += 1 + buf[pos];
			break;

		case 1:
			if (len < (pos+2))
				return NULL;
			bswap16(buf+pos);
			break;
		}
	}

	if (pos != len)
		return NULL;

	return (struct dvb_content_identifier_descriptor*) d;
}

/**
 * Iterator for entries field of a dvb_content_identifier_descriptor.
 *
 * @param d dvb_content_identifier_descriptor pointer.
 * @param pos Variable holding a pointer to the current dvb_content_identifier_entry.
 */
#define dvb_content_identifier_descriptor_entries_for_each(d, pos) \
	for ((pos) = dvb_content_identifier_descriptor_entries_first(d); \
	     (pos); \
	     (pos) = dvb_content_identifier_descriptor_entries_next(d, pos))

/**
 * Accessor for the data0 field of a dvb_content_identifier_entry.
 *
 * @param d dvb_content_identifier_entry pointer.
 * @return Pointer, or NULL on error.
 */
static inline struct dvb_content_identifier_entry_data_0*
	dvb_content_identifier_entry_data_0(struct dvb_content_identifier_entry *d)
{
	if (d->crid_location != 0)
		return NULL;
	return (struct dvb_content_identifier_entry_data_0*)
		((uint8_t*) d + sizeof(struct dvb_content_identifier_entry));
}

/**
 * Accessor for the data1 field of a dvb_content_identifier_entry.
 *
 * @param d dvb_content_identifier_entry pointer.
 * @return Pointer, or NULL on error.
 */
static inline struct dvb_content_identifier_entry_data_1*
	dvb_content_identifier_entry_data_1(struct dvb_content_identifier_entry *d)
{
	if (d->crid_location != 1)
		return NULL;
	return (struct dvb_content_identifier_entry_data_1*)
		((uint8_t*) d + sizeof(struct dvb_content_identifier_entry));
}








/******************************** PRIVATE CODE ********************************/
static inline struct dvb_content_identifier_entry*
	dvb_content_identifier_descriptor_entries_first(struct dvb_content_identifier_descriptor *d)
{
	if (d->d.len == 0)
		return NULL;

	return (struct dvb_content_identifier_entry *)
		((uint8_t*) d + sizeof(struct dvb_content_identifier_descriptor));
}

static inline struct dvb_content_identifier_entry*
	dvb_content_identifier_descriptor_entries_next(struct dvb_content_identifier_descriptor *d,
					     struct dvb_content_identifier_entry *pos)
{
	uint8_t *end = (uint8_t*) d + 2 + d->d.len;
	uint8_t *next =	(uint8_t *) pos + sizeof(struct dvb_content_identifier_entry);

	if (next >= end)
		return NULL;

	switch(pos->crid_location) {
	case 0:
		if ((next+2) >= end)
			return NULL;
		if ((next+2+next[1]) >= end)
			return NULL;
		break;

	case 1:
		if ((next+3) >= end)
			return NULL;
		break;
	}

	return (struct dvb_content_identifier_entry*) next;
}

#ifdef __cplusplus
}
#endif

#endif