aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-s/Telstar10_C-76.5E
blob: 36b0431601d548adec11d719f2301bee8b1e6e98 (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
# Telstar 10 @ 76.5E C-BAND
# Generated by Pietro Casoar
# 1st March 2009

# MPEG-2 & MPEG-4 QPSK (DVBS/S2)
# freq pol sr fec

# Racing International
S 3646000 H 5064000 3/4

# Image Channel
S 3655000 H 3214000 3/4

# Globe Cast Asia multiplex
S 3680000 H 27500000 3/4

# UBI World TV Multiplex
S 3760000 H 28066000 2/3

# UBI World TV Multiplex
S 3780000 V 28066000 2/3

# Ekushey TV
S 3787000 H 4600000 2/3

# Diganta TV
S 3793000 H 4340000 3/4

# RRSat Global Network Multiplex
S 3840000 H 27500000 3/4

# Channel 1
S 4003000 H 4080000 3/4

# Boishakhi TV
S 4009000 H 4300000 3/4

# TV Maldives
S 4030000 V 6312000 1/2

# Channel I
S 4034000 H 4300000 3/4

# Bangla Vision
S 4049000 H 3600000 3/4

# Kantipur TV
S 4056000 H 3214000 3/4

# BBC World Service Multiplex
S 4073000 H 13020000 1/2

# MNC Indonesia
S 4105000 H 3125000 3/4

# NDTV Arabia
S 4137000 H 2893000 3/4

# Islamic TV
S 4146000 H 3600000 3/4

# Bangladesh Multiplex
S 4173000 H 7400000 3/4
to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * * $Log: widget_text.h,v $ * Revision 1.7 2005/05/08 04:32:45 reinelt * CodingStyle added and applied * * Revision 1.6 2005/01/18 06:30:24 reinelt * added (C) to all copyright statements * * Revision 1.5 2004/06/26 12:05:00 reinelt * * uh-oh... the last CVS log message messed up things a lot... * * Revision 1.4 2004/06/26 09:27:21 reinelt * * added '-W' to CFLAGS * changed all C++ comments to C ones * cleaned up a lot of signed/unsigned mistakes * * Revision 1.3 2004/03/06 20:31:16 reinelt * Complete rewrite of the evaluator to get rid of the code * from mark Morley (because of license issues). * The new Evaluator does a pre-compile of expressions, and * stores them in trees. Therefore it should be reasonable faster... * * Revision 1.2 2004/01/15 07:47:03 reinelt * debian/ postinst and watch added (did CVS forget about them?) * evaluator: conditional expressions (a?b:c) added * text widget nearly finished * * Revision 1.1 2004/01/15 04:29:45 reinelt * moved lcd4linux.conf.sample to *.old * lcd4linux.conf.sample with new layout * new plugins 'loadavg' and 'meminfo' * text widget have pre- and postfix * */ #ifndef _WIDGET_TEXT_H_ #define _WIDGET_TEXT_H_ typedef enum { ALIGN_LEFT, ALIGN_CENTER, ALIGN_RIGHT, ALIGN_MARQUEE } ALIGN; typedef struct WIDGET_TEXT { char *prefix; /* expression for label on the left side */ void *pretree; /* pre-compiled expression for label on the left side */ char *preval; /* value for label on the left side */ char *postfix; /* expression for label on the right side */ void *posttree; /* pre-compiled expression for label on the right side */ char *postval; /* value for label on the right side */ char *expression; /* expression that delivers the value */ void *tree; /* pre-compiled expression that delivers the value */ char *value; /* evaluated value from expression */ char *buffer; /* string with 'width+1' bytes allocated */ int width; /* field width */ int precision; /* number of digits after the decimal point */ ALIGN align; /* alignment: L, C, R, M(arquee) */ int update; /* update interval */ int scroll; /* marquee starting point */ int speed; /* marquee scrolling speed */ } WIDGET_TEXT; extern WIDGET_CLASS Widget_Text; #endif