blob: d54e6bef52893feec7de3091f1d4525b6873eae5 (
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
|
;
; SANE Backend specification file
;
; It's basically emacs-lisp --- so ";" indicates comment to end of line.
; All syntactic elements are keyword tokens, followed by a string or
; keyword argument, as specified.
;
; ":backend" *must* be specified.
; All other information is optional (but what good is the file without it?).
;
:backend "stv680" ; name of backend
:version "1.0-1 (unmaintained)" ; version of backend
:manpage "sane-stv680"
:url "http://gkall.hobby.nl/stv680-aiptek.html" ; backend's web page
:comment "This vidcam backend is for the stv0680 chipset, See the website for more info."
:devicetype :vidcam ; start of a list of devices....
; other types: :stillcam, :vidcam,
; :meta, :api
:mfg "Aiptek" ; name a manufacturer
:url "http://www.aiptek.com.tw"
; name models for above-specified mfg.
:model "Aiptek Pencam"
:interface "USB"
:usbid "0x0553" "0x0202"
:status :minimal
:comment "image is OK for CIF and QCIF, VGA and QVGA untested, streaming video is a problem"
:mfg "Konica" ; name a manufacturer
:url "http://www.konicaminolta.com"
; name models for above-specified mfg.
:model "e-mini"
:interface "USB"
:usbid "0x04c8" "0x0722"
:status :untested
:comment " "
:mfg "Digital Dream" ; name a manufacturer
:url "http://www.digitaldreamco.com/en/index.shtml"
; name models for above-specified mfg.
:model "l' espion XS"
:interface "USB"
:usbid "0x1183" "0x0001"
:status :untested
:comment " "
:mfg "Creative" ; name a manufacturer
:url "http://www.creative.com/"
; name models for above-specified mfg.
:model "WebCam Go Mini"
:interface "USB"
:usbid "0x041e" "0x4007"
:status :untested
:comment " "
; :comment and :url specifiers are optional after :mfg, :model, :desc,
; and at the top-level.
|