# automatically generated from http://www.digitv.fi/sivu.asp?path=1;8224;9519 # T freq bw fec_hi fec_lo mod transmission-mode guard-interval hierarchy T 546000000 8MHz 2/3 NONE QAM64 8k 1/8 NONE T 602000000 8MHz 2/3 NONE QAM64 8k 1/8 NONE T 570000000 8MHz 2/3 NONE QAM64 8k 1/8 NONE T 770000000 8MHz 2/3 NONE QAM64 8k 1/8 NONE eenigne.org/dtv-scan-tables.git' title='dtv-scan-tables.git Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-c/at-KarrerNet
blob: a00c6a250078984ea1e5cbaf1d54c846b8b3c673 (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
# Kabel St. Florian bei Linz/AT KarrerNet
# 2009-01-10
# freq sr fec mod
C 442000000 6900000 NONE QAM64
C 458000000 6900000 NONE QAM64
C 466000000 6900000 NONE QAM64
C 474000000 6900000 NONE QAM64
C 482000000 6900000 NONE QAM64
C 490000000 6900000 NONE QAM64
C 498000000 6900000 NONE QAM64
C 506000000 6900000 NONE QAM64
C 514000000 6900000 NONE QAM64
C 522000000 6900000 NONE QAM64
C 530000000 6900000 NONE QAM64
C 538000000 6900000 NONE QAM64
C 546000000 6900000 NONE QAM64
C 554000000 6900000 NONE QAM64
C 562000000 6900000 NONE QAM64
C 570000000 6900000 NONE QAM64
C 578000000 6900000 NONE QAM64
C 586000000 6900000 NONE QAM64
C 610000000 6900000 NONE QAM64
C 386000000 6900000 NONE QAM256
C 394000000 6900000 NONE QAM256
C 410000000 6900000 NONE QAM256
C 434000000 6900000 NONE QAM256
yright (C) 2006 Michael Reinelt <reinelt@eunet.at> * Copyright (C) 2006 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net> * * This file is part of LCD4Linux. * * LCD4Linux is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * LCD4Linux 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * * $Log: widget_image.h,v $ * Revision 1.2 2006/02/08 04:55:05 reinelt * moved widget registration to drv_generic_graphic * * Revision 1.1 2006/01/22 09:16:11 reinelt * Image Widget framework added * */ #ifndef _WIDGET_IMAGE_H_ #define _WIDGET_IMAGE_H_ #include "rgb.h"< *bitmap; /* image bitmap */ int width, height; /* size of the image */ char *file_expr; /* expression for image filename */ void *file_tree; /* pre-compiled expression for image filename */ char *file; /* evaluated filename */ char *update_expr; /* expression for update interval */ void *update_tree; /* pre-compiled expression for update interval */ int update; /* update interval (msec) */ char *visible_expr; /* expression for visibility */ void *visible_tree; /* pre-compiled expression for visibility */ int visible; /* icon visible? */ } WIDGET_IMAGE; extern WIDGET_CLASS Widget_Image; #endif