aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-c/de-Unitymedia
blob: 3ba9c214bf5de13277ef388790be582d0fb22f4c (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
# Unitymedia
# Created from http://www.unitymedia.de/service/tv/frequenzen.html
# and http://blob.unitymedia.de/Download/Unitymedia_Senderlineup_digital_2008-05-28.pdf
# freq sr fec mod
C 113000000 6900000 NONE QAM256
C 121000000 6900000 NONE QAM256
C 338000000 6900000 NONE QAM256
C 346000000 6900000 NONE QAM256
C 354000000 6900000 NONE QAM64
C 362000000 6900000 NONE QAM64
C 370000000 6900000 NONE QAM64
C 378000000 6900000 NONE QAM64
C 386000000 6900000 NONE QAM64
C 394000000 6900000 NONE QAM256
C 402000000 6900000 NONE QAM256
C 410000000 6900000 NONE QAM256
C 418000000 6900000 NONE QAM256
C 426000000 6900000 NONE QAM256
C 434000000 6900000 NONE QAM256
C 442000000 6900000 NONE QAM64
C 450000000 6900000 NONE QAM64
C 458000000 6900000 NONE QAM256
C 466000000 6900000 NONE QAM256
C 474000000 6900000 NONE QAM64
C 522000000 6900000 NONE QAM256
C 530000000 6900000 NONE QAM256
C 538000000 6900000 NONE QAM256
C 554000000 6900000 NONE QAM256
C 562000000 6900000 NONE QAM256
C 570000000 6900000 NONE QAM256
C 610000000 6900000 NONE QAM64
C 650000000 6900000 NONE QAM256
C 658000000 6900000 NONE QAM256
C 666000000 6900000 NONE QAM256
C 674000000 6900000 NONE QAM256
fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * 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_TRANSPORT_STREAM_DESCRIPTOR
#define _UCSI_DVB_TRANSPORT_STREAM_DESCRIPTOR 1

#ifdef __cplusplus
extern "C"
{
#endif

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

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

	/* uint8_t data[] */
} __ucsi_packed;

/**
 * Process dvb_transport_stream_descriptor structure.
 *
 * @param d Pointer to generic descriptor.
 * @return dvb_transport_stream_descriptor structure or NULL on error.
 */
static inline struct dvb_transport_stream_descriptor*
	dvb_transport_stream_descriptor_codec(struct descriptor* d)
{
	return (struct dvb_transport_stream_descriptor*) d;
}

/**
 * Retrieve a pointer to the data field of a dvb_transport_stream_descriptor.
 *
 * @param d dvb_transport_stream_descriptor structure.
 * @return Pointer to data field.
 */
static inline uint8_t *
	dvb_transport_stream_descriptor_data(struct dvb_transport_stream_descriptor *d)
{
	return (uint8_t *) d + sizeof(struct dvb_transport_stream_descriptor);
}

/**
 * Calculate the length of the data field of a dvb_transport_stream_descriptor.
 *
 * @param d dvb_transport_stream_descriptor structure.
 * @return length of data field in bytes.
 */
static inline int
	dvb_transport_stream_descriptor_data_length(struct dvb_transport_stream_descriptor *d)
{
	return d->d.len;
}

#ifdef __cplusplus
}
#endif

#endif