* added a bunch of drivers by Siarzhuk Zharski
-> a USB Mass Storgage module (SCSI bus manager add-on) -> a SiS 7018 AC97 driver (uses "old" audio driver interface) -> a USB Serial driver -> a USB Vision driver and media add-on (Haupauge WinTV USB) * moved R3MediaDefs.h from usb_audio driver to common place headers/private/audio (also used by SiS 7018 driver) * added TV tuner frequency defines to data/settings/media/usb_vision Some of these drivers are in unfinished state, particularily the USB Vision driver, the VideoProducer doesn't seem to use it yet, the USB Mass Storage module is known to work though, it also includes add-ons for itself that add support for some "special" hardware, these are not integrated with the Jamfile build system though. Also I didn't much much time with the "CVS package" targets, the ReadMes are not added, someone with more knowledge about this could add them... None of this stuff is added to the Haiku image, it is simply included to be maintained in the Haiku tree from now on. * fixed a bug in Video Producer sample inherited from Be Sample code - the timing from the time source was not really used, on some systems this could cause in the producer not waking up at the correct time if the system time and audio card time are drifting apart git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17625 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "Australia Broadcast channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/Australia\040Air,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
@Australia Air
|
||||
46250000 0
|
||||
57250000 1
|
||||
64250000 2
|
||||
86250000 3
|
||||
95250000 4
|
||||
102250000 5
|
||||
138250000 5A
|
||||
175250000 6
|
||||
182250000 7
|
||||
189250000 8
|
||||
196250000 9
|
||||
209250000 10
|
||||
216250000 11
|
||||
527250000 28
|
||||
534250000 29
|
||||
541250000 30
|
||||
548250000 31
|
||||
555250000 32
|
||||
562250000 33
|
||||
569250000 34
|
||||
576250000 35
|
||||
604250000 39
|
||||
611250000 40
|
||||
618250000 41
|
||||
625250000 42
|
||||
632250000 43
|
||||
639250000 44
|
||||
646250000 45
|
||||
653250000 46
|
||||
660250000 47
|
||||
667250000 48
|
||||
674250000 49
|
||||
681250000 50
|
||||
688250000 51
|
||||
695250000 52
|
||||
702250000 53
|
||||
709250000 54
|
||||
716250000 55
|
||||
723250000 56
|
||||
730250000 57
|
||||
737250000 58
|
||||
744250000 59
|
||||
751250000 60
|
||||
758250000 61
|
||||
765250000 62
|
||||
772250000 63
|
||||
779250000 64
|
||||
786250000 65
|
||||
793250000 66
|
||||
800250000 67
|
||||
807250000 68
|
||||
814250000 69
|
||||
@@ -0,0 +1,228 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "FM Radio channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/FM\040Radio,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
; The word "Radio" in angle brakets means that channels are radio channels.
|
||||
;
|
||||
@FM Radio
|
||||
;<Radio>
|
||||
87500000 87,5
|
||||
87600000 87,6
|
||||
87700000 87,7
|
||||
87800000 87,8
|
||||
87900000 87,9
|
||||
88000000 88,0
|
||||
88100000 88,1
|
||||
88200000 88,2
|
||||
88300000 88,3
|
||||
88400000 88,4
|
||||
88500000 88,5
|
||||
88600000 88,6
|
||||
88700000 88,7
|
||||
88800000 88,8
|
||||
88900000 88,9
|
||||
89000000 89,0
|
||||
89100000 89,1
|
||||
89200000 89,2
|
||||
89300000 89,3
|
||||
89400000 89,4
|
||||
89500000 89,5
|
||||
89600000 89,6
|
||||
89700000 89,7
|
||||
89800000 89,8
|
||||
89900000 89,9
|
||||
90000000 90,0
|
||||
90100000 90,1
|
||||
90200000 90,2
|
||||
90300000 90,3
|
||||
90400000 90,4
|
||||
90500000 90,5
|
||||
90600000 90,6
|
||||
90700000 90,7
|
||||
90800000 90,8
|
||||
90900000 90,9
|
||||
91000000 91,0
|
||||
91100000 91,1
|
||||
91200000 91,2
|
||||
91300000 91,3
|
||||
91400000 91,4
|
||||
91500000 91,5
|
||||
91600000 91,6
|
||||
91700000 91,7
|
||||
91800000 91,8
|
||||
91900000 91,9
|
||||
92000000 92,0
|
||||
92100000 92,1
|
||||
92200000 92,2
|
||||
92300000 92,3
|
||||
92400000 92,4
|
||||
92500000 92,5
|
||||
92600000 92,6
|
||||
92700000 92,7
|
||||
92800000 92,8
|
||||
92900000 92,9
|
||||
93000000 93,0
|
||||
93100000 93,1
|
||||
93200000 93,2
|
||||
93300000 93,3
|
||||
93400000 93,4
|
||||
93500000 93,5
|
||||
93600000 93,6
|
||||
93700000 93,7
|
||||
93800000 93,8
|
||||
93900000 93,9
|
||||
94000000 94,0
|
||||
94100000 94,1
|
||||
94200000 94,2
|
||||
94300000 94,3
|
||||
94400000 94,4
|
||||
94500000 94,5
|
||||
94600000 94,6
|
||||
94700000 94,7
|
||||
94800000 94,8
|
||||
94900000 94,9
|
||||
95000000 95,0
|
||||
95100000 95,1
|
||||
95200000 95,2
|
||||
95300000 95,3
|
||||
95400000 95,4
|
||||
95500000 95,5
|
||||
95600000 95,6
|
||||
95700000 95,7
|
||||
95800000 95,8
|
||||
95900000 95,9
|
||||
96000000 96,0
|
||||
97100000 97,1
|
||||
97200000 97,2
|
||||
97300000 97,3
|
||||
97400000 97,4
|
||||
97500000 97,5
|
||||
97600000 97,6
|
||||
97700000 97,7
|
||||
97800000 97,8
|
||||
97900000 97,9
|
||||
98000000 98,0
|
||||
98100000 98,1
|
||||
98200000 98,2
|
||||
98300000 98,3
|
||||
98400000 98,4
|
||||
98500000 98,5
|
||||
98600000 98,6
|
||||
98700000 98,7
|
||||
98800000 98,8
|
||||
98900000 98,9
|
||||
99000000 99,0
|
||||
99100000 99,1
|
||||
99200000 99,2
|
||||
99300000 99,3
|
||||
99400000 99,4
|
||||
99500000 99,5
|
||||
99600000 99,6
|
||||
99700000 99,7
|
||||
99800000 99,8
|
||||
99900000 99,9
|
||||
100000000 100,0
|
||||
100100000 100,1
|
||||
100200000 100,2
|
||||
100300000 100,3
|
||||
100400000 100,4
|
||||
100500000 100,5
|
||||
100600000 100,6
|
||||
100700000 100,7
|
||||
100800000 100,8
|
||||
100900000 100,9
|
||||
101000000 101,0
|
||||
101100000 101,1
|
||||
101200000 101,2
|
||||
101300000 101,3
|
||||
101400000 101,4
|
||||
101500000 101,5
|
||||
101600000 101,6
|
||||
101700000 101,7
|
||||
101800000 101,8
|
||||
101900000 101,9
|
||||
102000000 102,0
|
||||
102100000 102,1
|
||||
102200000 102,2
|
||||
102300000 102,3
|
||||
102400000 102,4
|
||||
102500000 102,5
|
||||
102600000 102,6
|
||||
102700000 102,7
|
||||
102800000 102,8
|
||||
102900000 102,9
|
||||
103000000 103,0
|
||||
103100000 103,1
|
||||
103200000 103,2
|
||||
103300000 103,3
|
||||
103400000 103,4
|
||||
103500000 103,5
|
||||
103600000 103,6
|
||||
103700000 103,7
|
||||
103800000 103,8
|
||||
103900000 103,9
|
||||
104000000 104,0
|
||||
104100000 104,1
|
||||
104200000 104,2
|
||||
104300000 104,3
|
||||
104400000 104,4
|
||||
104500000 104,5
|
||||
104600000 104,6
|
||||
104700000 104,7
|
||||
104800000 104,8
|
||||
104900000 104,9
|
||||
105000000 105,0
|
||||
105100000 105,1
|
||||
105200000 105,2
|
||||
105300000 105,3
|
||||
105400000 105,4
|
||||
105500000 105,5
|
||||
105600000 105,6
|
||||
105700000 105,7
|
||||
105800000 105,8
|
||||
105900000 105,9
|
||||
106000000 106,0
|
||||
106100000 106,1
|
||||
106200000 106,2
|
||||
106300000 106,3
|
||||
106400000 106,4
|
||||
106500000 106,5
|
||||
106600000 106,6
|
||||
106700000 106,7
|
||||
106800000 106,8
|
||||
106900000 106,9
|
||||
107000000 107,0
|
||||
107100000 107,1
|
||||
107200000 107,2
|
||||
107300000 107,3
|
||||
107400000 107,4
|
||||
107500000 107,5
|
||||
107600000 107,6
|
||||
107700000 107,7
|
||||
107800000 107,8
|
||||
107900000 107,9
|
||||
108000000 108,0
|
||||
@@ -0,0 +1,88 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "Ireland Broadcast channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/Ireland\040Air,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
@Ireland Air
|
||||
45750000 A(2)
|
||||
53750000 B(3)
|
||||
61750000 C(4)
|
||||
175250000 D(5)
|
||||
183250000 E(6)
|
||||
191250000 F(7)
|
||||
199250000 G(8)
|
||||
207250000 H(9)
|
||||
215250000 I(10)
|
||||
223250000 J(11)
|
||||
471250000 21
|
||||
479250000 22
|
||||
487250000 23
|
||||
495250000 24
|
||||
503250000 25
|
||||
511250000 26
|
||||
519250000 27
|
||||
527250000 28
|
||||
535250000 29
|
||||
543250000 30
|
||||
551250000 31
|
||||
559250000 32
|
||||
567250000 33
|
||||
575250000 34
|
||||
583250000 35
|
||||
591250000 36
|
||||
599250000 37
|
||||
607250000 38
|
||||
615250000 39
|
||||
623250000 40
|
||||
631250000 41
|
||||
639250000 42
|
||||
647250000 43
|
||||
655250000 44
|
||||
663250000 45
|
||||
671250000 46
|
||||
679250000 47
|
||||
687250000 48
|
||||
695250000 49
|
||||
703250000 50
|
||||
711250000 51
|
||||
719250000 52
|
||||
727250000 53
|
||||
735250000 54
|
||||
743250000 55
|
||||
751250000 56
|
||||
759250000 57
|
||||
767250000 58
|
||||
775250000 59
|
||||
783250000 60
|
||||
791250000 61
|
||||
799250000 62
|
||||
807250000 63
|
||||
815250000 64
|
||||
823250000 65
|
||||
831250000 66
|
||||
839250000 67
|
||||
847250000 68
|
||||
855250000 69
|
||||
@@ -0,0 +1,91 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "Japan Broadcast channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/Japan\040Air,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
@Japan Air
|
||||
91250000 1
|
||||
97250000 2
|
||||
103250000 3
|
||||
171250000 4
|
||||
177250000 5
|
||||
183250000 6
|
||||
189250000 7
|
||||
193250000 8
|
||||
199250000 9
|
||||
205250000 10
|
||||
211250000 11
|
||||
217250000 12
|
||||
471250000 13
|
||||
477250000 14
|
||||
483250000 15
|
||||
489250000 16
|
||||
495250000 17
|
||||
501250000 18
|
||||
507250000 19
|
||||
513250000 20
|
||||
519250000 21
|
||||
525250000 22
|
||||
531250000 23
|
||||
537250000 24
|
||||
543250000 25
|
||||
549250000 26
|
||||
555250000 27
|
||||
561250000 28
|
||||
567250000 29
|
||||
573250000 30
|
||||
579250000 31
|
||||
585250000 32
|
||||
591250000 33
|
||||
597250000 34
|
||||
603250000 35
|
||||
609250000 36
|
||||
615250000 37
|
||||
621250000 38
|
||||
627250000 39
|
||||
633250000 40
|
||||
639250000 41
|
||||
645250000 42
|
||||
651250000 43
|
||||
657250000 44
|
||||
663250000 45
|
||||
669250000 46
|
||||
675250000 47
|
||||
681250000 48
|
||||
687250000 49
|
||||
693250000 50
|
||||
699250000 51
|
||||
705250000 52
|
||||
711250000 53
|
||||
717250000 54
|
||||
723250000 55
|
||||
729250000 56
|
||||
735250000 57
|
||||
741250000 58
|
||||
747250000 59
|
||||
753250000 60
|
||||
759250000 61
|
||||
765250000 62
|
||||
@@ -0,0 +1,92 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "Japan Cable channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/Japan\040Cable,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
@Japan Cable
|
||||
91250000 1
|
||||
97250000 2
|
||||
103250000 3
|
||||
171250000 4
|
||||
177250000 5
|
||||
183250000 6
|
||||
189250000 7
|
||||
193250000 8
|
||||
199250000 9
|
||||
205250000 10
|
||||
211250000 11
|
||||
217250000 12
|
||||
109250000 C13
|
||||
115250000 C14
|
||||
121250000 C15
|
||||
127250000 C16
|
||||
133250000 C17
|
||||
139250000 C18
|
||||
145250000 C19
|
||||
151250000 C20
|
||||
157250000 C21
|
||||
165250000 C22
|
||||
223250000 C23
|
||||
229250000 C24
|
||||
235250000 C25
|
||||
241250000 C26
|
||||
247250000 C27
|
||||
253250000 C28
|
||||
259250000 C29
|
||||
265250000 C30
|
||||
271250000 C31
|
||||
277250000 C32
|
||||
293250000 C33
|
||||
289250000 C34
|
||||
295250000 C35
|
||||
301250000 C36
|
||||
307250000 C37
|
||||
313250000 C38
|
||||
319250000 C39
|
||||
325250000 C40
|
||||
331250000 C41
|
||||
337250000 C42
|
||||
343250000 C43
|
||||
349250000 C44
|
||||
355250000 C45
|
||||
361250000 C46
|
||||
367250000 C47
|
||||
373250000 C48
|
||||
379250000 C49
|
||||
385250000 C50
|
||||
391250000 C51
|
||||
397250000 C52
|
||||
403250000 C53
|
||||
409250000 C54
|
||||
415250000 C55
|
||||
421250000 C56
|
||||
427250000 C57
|
||||
433250000 C58
|
||||
439250000 C59
|
||||
445250000 C60
|
||||
451250000 C61
|
||||
457250000 C62
|
||||
463250000 C63
|
||||
@@ -0,0 +1,104 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "Great Britain Broadcast channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/UK\040Air,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
@UK Air
|
||||
45750000 A
|
||||
53750000 B
|
||||
61750000 C
|
||||
175250000 D
|
||||
183250000 E
|
||||
191250000 F
|
||||
199250000 G
|
||||
207250000 H
|
||||
215250000 J
|
||||
223250000 C10
|
||||
231250000 C11
|
||||
247250000 C13
|
||||
471250000 B21
|
||||
479250000 B22
|
||||
487250000 B23
|
||||
495250000 B24
|
||||
503250000 B25
|
||||
511250000 B26
|
||||
519250000 B27
|
||||
527250000 B28
|
||||
535250000 B29
|
||||
543250000 B30
|
||||
551250000 B31
|
||||
559250000 B32
|
||||
567250000 B33
|
||||
575250000 B34
|
||||
583250000 B35
|
||||
591250000 B36
|
||||
599250000 B37
|
||||
607250000 B38
|
||||
615250000 B39
|
||||
623250000 B40
|
||||
631250000 B41
|
||||
639250000 B42
|
||||
647250000 B43
|
||||
655250000 B44
|
||||
663250000 B45
|
||||
671250000 B46
|
||||
679250000 B47
|
||||
687250000 B48
|
||||
695250000 B49
|
||||
703250000 B50
|
||||
711250000 B51
|
||||
719250000 B52
|
||||
727250000 B53
|
||||
735250000 B54
|
||||
743250000 B55
|
||||
751250000 B56
|
||||
759250000 B57
|
||||
767250000 B58
|
||||
775250000 B59
|
||||
783250000 B60
|
||||
791250000 B61
|
||||
799250000 B62
|
||||
807250000 B63
|
||||
815250000 B64
|
||||
823250000 B65
|
||||
831250000 B66
|
||||
839250000 B67
|
||||
847250000 B68
|
||||
855250000 B69
|
||||
45000000 B1
|
||||
51750000 B2
|
||||
56750000 B3
|
||||
61750000 B4
|
||||
66750000 B5
|
||||
179750000 B6
|
||||
184750000 B7
|
||||
189750000 B8
|
||||
194750000 B9
|
||||
199750000 B10
|
||||
204750000 B11
|
||||
209750000 B12
|
||||
214750000 B13
|
||||
219750000 B14
|
||||
@@ -0,0 +1,113 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "Ex USSR UKW Radio channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/UKW\040Radio,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
; The word "Radio" in angle brakets means that this channels is radio channels.
|
||||
;
|
||||
@UKW Radio
|
||||
;<Radio>
|
||||
66000000 66,0
|
||||
66100000 66,1
|
||||
66200000 66,2
|
||||
66300000 66,3
|
||||
66400000 66,4
|
||||
66500000 66,5
|
||||
66600000 66,6
|
||||
66700000 66,7
|
||||
66800000 66,8
|
||||
66900000 66,9
|
||||
67000000 67,0
|
||||
67100000 67,1
|
||||
67200000 67,2
|
||||
67300000 67,3
|
||||
67400000 67,4
|
||||
67500000 67,5
|
||||
67600000 67,6
|
||||
67700000 67,7
|
||||
67800000 67,8
|
||||
67900000 67,9
|
||||
68000000 68,0
|
||||
68100000 68,1
|
||||
68200000 68,2
|
||||
68300000 68,3
|
||||
68400000 68,4
|
||||
68500000 68,5
|
||||
68600000 68,6
|
||||
68700000 68,7
|
||||
68800000 68,8
|
||||
68900000 68,9
|
||||
69000000 69,0
|
||||
69100000 69,1
|
||||
69200000 69,2
|
||||
69300000 69,3
|
||||
69400000 69,4
|
||||
69500000 69,5
|
||||
69600000 69,6
|
||||
69700000 69,7
|
||||
69800000 69,8
|
||||
69900000 69,9
|
||||
70000000 70,0
|
||||
70100000 70,1
|
||||
70200000 70,2
|
||||
70300000 70,3
|
||||
70400000 70,4
|
||||
70500000 70,5
|
||||
70600000 70,6
|
||||
70700000 70,7
|
||||
70800000 70,8
|
||||
70900000 70,9
|
||||
71000000 71,0
|
||||
71100000 71,1
|
||||
71200000 71,2
|
||||
71300000 71,3
|
||||
71400000 71,4
|
||||
71500000 71,5
|
||||
71600000 71,6
|
||||
71700000 71,7
|
||||
71800000 71,8
|
||||
71900000 71,9
|
||||
72000000 72,0
|
||||
72100000 72,1
|
||||
72200000 72,2
|
||||
72300000 72,3
|
||||
72400000 72,4
|
||||
72500000 72,5
|
||||
72600000 72,6
|
||||
72700000 72,7
|
||||
72800000 72,8
|
||||
72900000 72,9
|
||||
73000000 73,0
|
||||
73100000 73,1
|
||||
73200000 73,2
|
||||
73300000 73,3
|
||||
73400000 73,4
|
||||
73500000 73,5
|
||||
73600000 73,6
|
||||
73700000 73,7
|
||||
73800000 73,8
|
||||
73900000 73,9
|
||||
74000000 74,0
|
||||
@@ -0,0 +1,97 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "US Broadcast channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/US\040Air,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
@US Air
|
||||
55250000 2
|
||||
61250000 3
|
||||
67250000 4
|
||||
77250000 5
|
||||
83250000 6
|
||||
175250000 7
|
||||
181250000 8
|
||||
187250000 9
|
||||
193250000 10
|
||||
199250000 11
|
||||
205250000 12
|
||||
211250000 13
|
||||
471250000 14
|
||||
477250000 15
|
||||
483250000 16
|
||||
489250000 17
|
||||
495250000 18
|
||||
501250000 19
|
||||
507250000 20
|
||||
513250000 21
|
||||
519250000 22
|
||||
525250000 23
|
||||
531250000 24
|
||||
537250000 25
|
||||
543250000 26
|
||||
549250000 27
|
||||
555250000 28
|
||||
561250000 29
|
||||
567250000 30
|
||||
573250000 31
|
||||
579250000 32
|
||||
585250000 33
|
||||
591250000 34
|
||||
597250000 35
|
||||
603250000 36
|
||||
609250000 37
|
||||
615250000 38
|
||||
621250000 39
|
||||
627250000 40
|
||||
633250000 41
|
||||
639250000 42
|
||||
645250000 43
|
||||
651250000 44
|
||||
657250000 45
|
||||
663250000 46
|
||||
669250000 47
|
||||
675250000 48
|
||||
681250000 49
|
||||
687250000 50
|
||||
693250000 51
|
||||
699250000 52
|
||||
705250000 53
|
||||
711250000 54
|
||||
717250000 55
|
||||
723250000 56
|
||||
729250000 57
|
||||
735250000 58
|
||||
741250000 59
|
||||
747250000 60
|
||||
753250000 61
|
||||
759250000 62
|
||||
765250000 63
|
||||
771250000 64
|
||||
777250000 65
|
||||
783250000 66
|
||||
789250000 67
|
||||
795250000 68
|
||||
801250000 69
|
||||
@@ -0,0 +1,154 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "US Cable channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/US\040Cable,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
@US Cable
|
||||
73250000 4A
|
||||
55250000 2
|
||||
61250000 3
|
||||
67250000 4
|
||||
77250000 5
|
||||
83250000 6
|
||||
175250000 7
|
||||
181250000 8
|
||||
187250000 9
|
||||
193250000 10
|
||||
199250000 11
|
||||
205250000 12
|
||||
211250000 13
|
||||
121250000 A
|
||||
127250000 B
|
||||
133250000 C
|
||||
139250000 D
|
||||
145250000 E
|
||||
151250000 F
|
||||
157250000 G
|
||||
163250000 H
|
||||
169250000 I
|
||||
217250000 J
|
||||
223250000 K
|
||||
229250000 L
|
||||
235250000 M
|
||||
241250000 N
|
||||
247250000 O
|
||||
253250000 P
|
||||
259250000 Q
|
||||
265250000 R
|
||||
271250000 S
|
||||
277250000 T
|
||||
283250000 U
|
||||
289250000 V
|
||||
295250000 W
|
||||
301250000 W+1
|
||||
307250000 W+2
|
||||
313250000 W+3
|
||||
319250000 W+4
|
||||
325250000 W+5
|
||||
331250000 W+6
|
||||
337250000 W+7
|
||||
343250000 W+8
|
||||
349250000 W+9
|
||||
355250000 W+10
|
||||
361250000 W+11
|
||||
367250000 W+12
|
||||
373250000 W+13
|
||||
379250000 W+14
|
||||
385250000 W+15
|
||||
391250000 W+16
|
||||
397250000 W+17
|
||||
403250000 W+18
|
||||
409250000 W+19
|
||||
415250000 W+20
|
||||
421250000 W+21
|
||||
427250000 W+22
|
||||
433250000 W+23
|
||||
439250000 W+24
|
||||
445250000 W+25
|
||||
451250000 W+26
|
||||
457250000 W+27
|
||||
463250000 W+28
|
||||
469250000 65
|
||||
475250000 66
|
||||
481250000 67
|
||||
487250000 68
|
||||
493250000 69
|
||||
499250000 70
|
||||
505250000 71
|
||||
511250000 72
|
||||
517250000 73
|
||||
523250000 74
|
||||
529250000 75
|
||||
535250000 76
|
||||
541250000 77
|
||||
547250000 78
|
||||
553250000 79
|
||||
559250000 80
|
||||
565250000 81
|
||||
571250000 82
|
||||
577250000 83
|
||||
583250000 84
|
||||
589250000 85
|
||||
595250000 86
|
||||
601250000 87
|
||||
607250000 88
|
||||
613250000 89
|
||||
619250000 90
|
||||
625250000 91
|
||||
631250000 92
|
||||
637250000 93
|
||||
643250000 94
|
||||
91250000 A5
|
||||
97250000 A4
|
||||
103250000 A3
|
||||
109250000 A2
|
||||
115250000 A-1
|
||||
649250000 100
|
||||
655250000 101
|
||||
661250000 102
|
||||
667250000 103
|
||||
673250000 104
|
||||
679250000 105
|
||||
685250000 106
|
||||
691250000 107
|
||||
697250000 108
|
||||
703250000 109
|
||||
709250000 110
|
||||
715250000 111
|
||||
721250000 112
|
||||
727250000 113
|
||||
733250000 114
|
||||
739250000 115
|
||||
745250000 116
|
||||
751250000 117
|
||||
757250000 118
|
||||
763250000 119
|
||||
769250000 120
|
||||
775250000 121
|
||||
781250000 122
|
||||
787250000 123
|
||||
793250000 124
|
||||
799250000 125
|
||||
@@ -0,0 +1,153 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "US Cable HRC channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/US\040Cable\040HRC,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
@US Cable HRC
|
||||
54000000 2
|
||||
60000000 3
|
||||
66000000 4
|
||||
76000000 5
|
||||
82000000 6
|
||||
174000000 7
|
||||
180000000 8
|
||||
186000000 9
|
||||
192000000 10
|
||||
198000000 11
|
||||
204000000 12
|
||||
210000000 13
|
||||
120000000 A
|
||||
126000000 B
|
||||
132000000 C
|
||||
138000000 D
|
||||
144000000 E
|
||||
150000000 F
|
||||
156000000 G
|
||||
162000000 H
|
||||
168000000 I
|
||||
216000000 J
|
||||
222000000 K
|
||||
228000000 L
|
||||
234000000 M
|
||||
240000000 N
|
||||
246000000 O
|
||||
252000000 P
|
||||
258000000 Q
|
||||
264000000 R
|
||||
270000000 S
|
||||
276000000 T
|
||||
282000000 U
|
||||
288000000 V
|
||||
294000000 W
|
||||
300000000 W+1
|
||||
306000000 W+2
|
||||
312000000 W+3
|
||||
318000000 W+4
|
||||
324000000 W+5
|
||||
330000000 W+6
|
||||
336000000 W+7
|
||||
342000000 W+8
|
||||
348000000 W+9
|
||||
354000000 W+10
|
||||
360000000 W+11
|
||||
366000000 W+12
|
||||
372000000 W+13
|
||||
378000000 W+14
|
||||
384000000 W+15
|
||||
390000000 W+16
|
||||
396000000 W+17
|
||||
402000000 W+18
|
||||
408000000 W+19
|
||||
414000000 W+20
|
||||
420000000 W+21
|
||||
426000000 W+22
|
||||
432000000 W+23
|
||||
438000000 W+24
|
||||
444000000 W+25
|
||||
450000000 W+26
|
||||
456000000 W+27
|
||||
462000000 W+28
|
||||
468000000 65
|
||||
474000000 66
|
||||
480000000 67
|
||||
486000000 68
|
||||
492000000 69
|
||||
498000000 70
|
||||
504000000 71
|
||||
510000000 72
|
||||
516000000 73
|
||||
522000000 74
|
||||
528000000 75
|
||||
534000000 76
|
||||
540000000 77
|
||||
546000000 78
|
||||
552000000 79
|
||||
558000000 80
|
||||
564000000 81
|
||||
570000000 82
|
||||
576000000 83
|
||||
582000000 84
|
||||
588000000 85
|
||||
594000000 86
|
||||
600000000 87
|
||||
606000000 88
|
||||
612000000 89
|
||||
618000000 90
|
||||
624000000 91
|
||||
630000000 92
|
||||
636000000 93
|
||||
642000000 94
|
||||
90000000 A5
|
||||
96000000 A4
|
||||
102000000 A3
|
||||
108000000 A2
|
||||
114000000 A-1
|
||||
648000000 100
|
||||
654000000 101
|
||||
660000000 102
|
||||
666000000 103
|
||||
672000000 104
|
||||
678000000 105
|
||||
684000000 106
|
||||
690000000 107
|
||||
696000000 108
|
||||
702000000 109
|
||||
708000000 110
|
||||
714000000 111
|
||||
720000000 112
|
||||
726000000 113
|
||||
732000000 114
|
||||
738000000 115
|
||||
744000000 116
|
||||
750000000 117
|
||||
756000000 118
|
||||
762000000 119
|
||||
768000000 120
|
||||
774000000 121
|
||||
780000000 122
|
||||
786000000 123
|
||||
792000000 124
|
||||
798000000 125
|
||||
@@ -0,0 +1,90 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "Ex USSR Broadcast channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/xUSSR\040Air,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
@xUSSR Air
|
||||
49750000 1
|
||||
59250000 2
|
||||
77250000 3
|
||||
85250000 4
|
||||
93250000 5
|
||||
175250000 6
|
||||
183250000 7
|
||||
191250000 8
|
||||
199250000 9
|
||||
207250000 10
|
||||
215250000 11
|
||||
223250000 12
|
||||
471250000 21
|
||||
479250000 22
|
||||
487250000 23
|
||||
495250000 24
|
||||
503250000 25
|
||||
511250000 26
|
||||
519250000 27
|
||||
527250000 28
|
||||
535250000 29
|
||||
543250000 30
|
||||
551250000 31
|
||||
559250000 32
|
||||
567250000 33
|
||||
575250000 34
|
||||
583250000 35
|
||||
591250000 36
|
||||
599250000 37
|
||||
607250000 38
|
||||
615250000 39
|
||||
623250000 40
|
||||
631250000 41
|
||||
639250000 42
|
||||
647250000 43
|
||||
655250000 44
|
||||
663250000 45
|
||||
671250000 46
|
||||
679250000 47
|
||||
687250000 48
|
||||
695250000 49
|
||||
703250000 50
|
||||
711250000 51
|
||||
719250000 52
|
||||
727250000 53
|
||||
735250000 54
|
||||
743250000 55
|
||||
751250000 56
|
||||
759250000 57
|
||||
767250000 58
|
||||
775250000 59
|
||||
783250000 60
|
||||
791250000 61
|
||||
799250000 62
|
||||
807250000 63
|
||||
815250000 64
|
||||
823250000 65
|
||||
831250000 66
|
||||
839250000 67
|
||||
847250000 68
|
||||
855250000 69
|
||||
@@ -0,0 +1,67 @@
|
||||
;
|
||||
; Tuner locale file for BeOS USBVision driver
|
||||
;
|
||||
; "Ex USSR Cable channels"
|
||||
;
|
||||
;===========================================================
|
||||
; This file is a part of BeOS USBVision driver project.
|
||||
; Copyright (c) 2003 by Siarzuk Zharski <[email protected]>
|
||||
;
|
||||
; This file may be used under the terms of the BSD License
|
||||
; Look into the file "License" for details.
|
||||
;
|
||||
; $Source: /cvsroot/sis4be/usbvision/Locales/xUSSR\040Cable,v $
|
||||
; $Author: zharik $
|
||||
; $Revision: 1.2 $
|
||||
; $Date: 2003/07/09 04:58:08 $
|
||||
;===========================================================
|
||||
;
|
||||
; Format of this file:
|
||||
;
|
||||
; The file begins with the name of locale preceded with "@"-sign. This name will be
|
||||
; visible for user in Tuner Locale settings.
|
||||
; Channels are presented as frequency <-> name pairs.
|
||||
; The Frequency is in Hz and name begins just after the first space character
|
||||
; after frequency number. The name ends at the end of line.
|
||||
;
|
||||
; All lines beginning with ";"-sign are comments and will be ignored.
|
||||
;
|
||||
@xUSSR Cable
|
||||
111250000 70
|
||||
119250000 71
|
||||
127250000 72
|
||||
135250000 73
|
||||
143250000 74
|
||||
141250000 75
|
||||
159250000 76
|
||||
167250000 77
|
||||
231250000 78
|
||||
239250000 79
|
||||
247250000 80
|
||||
255250000 81
|
||||
263250000 82
|
||||
271250000 83
|
||||
279250000 84
|
||||
287250000 85
|
||||
295250000 86
|
||||
303250000 87
|
||||
311250000 88
|
||||
319250000 89
|
||||
327250000 90
|
||||
335250000 91
|
||||
343250000 92
|
||||
351250000 93
|
||||
359250000 94
|
||||
367250000 95
|
||||
375250000 96
|
||||
383250000 97
|
||||
391250000 98
|
||||
399250000 99
|
||||
407250000 100
|
||||
415250000 101
|
||||
423250000 102
|
||||
431250000 103
|
||||
439250000 104
|
||||
447250000 105
|
||||
455250000 106
|
||||
463250000 107
|
||||
Reference in New Issue
Block a user