blob: b750bd9eb4f5a3473d78c6cc5108bde3fef1a601 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
comment "Generic options"
depends on PACKAGE_tvheadend
config TVHEADEND_OPTIMIZE_SPEED
bool "Optimize for speed"
depends on PACKAGE_tvheadend && (arm || aarch64 || x86_64)
default n
help
Optimize tvheadend for speed instead of size. This option adds -O3 and LTO (Link Time Optimization).
Note: No benchmarks were performed when this option was added. Speed improvements (if any) are not known.
config TVHEADEND_TRACE
bool "Low level debug trace"
depends on PACKAGE_tvheadend
default n
help
Support low level debug trace for tvheadend subsystems.
For a list of available subsystems, run "tvheadend --subsystems" in OpenWRT console.
Note: Selecting this option does not automatically enable trace logging.
It only includes support for --trace command line option and GUI.
config TVHEADEND_AVAHI_SUPPORT
bool "Avahi client"
depends on PACKAGE_tvheadend
select PACKAGE_libavahi-client
default n
help
Enables the opensource implementation of Apple's zero configuration protocol.
Tvheadend will advertise itself on the network using this protocol.
choice
prompt "Regular Expression"
depends on PACKAGE_tvheadend
config TVHEADEND_REGEX_POSIX
bool "POSIX (internal)"
help
Use internal POSIX Regular Expressions.
Note that not all EPG parsers will work with POSIX RegEx.
config TVHEADEND_REGEX_PCRE2
bool "PCRE2 (libpcre2)"
select PACKAGE_libpcre2
help
Use more advanced Perl-Compatible Regular Expressions, provided by libpcre2.
endchoice
config TVHEADEND_IMAGECACHE
bool "Image cache"
depends on PACKAGE_tvheadend
default n
help
Support caching TV station logos and other images on disk.
Note: Activating disk cache will increase fash memory wear.
Selecting this option does not automatically enable disk caching. It only includes support for it.
comment "Input & output support"
depends on PACKAGE_tvheadend
config TVHEADEND_LINUXDVB_SUPPORT
bool "DVB tuners"
depends on PACKAGE_tvheadend
default y
help
Include support for DVB tuners.
Note: Kernel driver(s) and firmware must also be installed.
config TVHEADEND_DVBSCAN_SUPPORT
bool "Include DVB-scan tables"
depends on TVHEADEND_LINUXDVB_SUPPORT
default TVHEADEND_LINUXDVB_SUPPORT
help
Download and include DVB scan tables.
config TVHEADEND_IPTV
bool "IPTV client"
depends on PACKAGE_tvheadend
default y
help
Include IP-TV client.
config TVHEADEND_SATIP_CLIENT
bool "SAT>IP client"
depends on PACKAGE_tvheadend
default y
help
Include SAT>IP client. This allows tvheadend to receive streams from a SAT>IP server.
config TVHEADEND_SATIP_SERVER
bool "SAT>IP server"
depends on PACKAGE_tvheadend
default y
help
Include SAT>IP server. This allows tvheadend to stream to SAT>IP clients.
config TVHEADEND_HDHOMERUN_CLIENT
bool "HDHomeRun client"
depends on PACKAGE_tvheadend
default y
help
Include HDHomeRun client.
HDHomeRun is a network-attached, digital television tuner box.
comment "SoftCAM (Software Conditional Access Module)"
depends on PACKAGE_tvheadend
depends on BUILD_PATENTED
config TVHEADEND_CSA
bool "CSA decoding"
depends on PACKAGE_tvheadend
depends on BUILD_PATENTED
select PACKAGE_libdvbcsa
default n
help
Support decoding CSA (Common Scrambling Algorithm). Uses libdvbcsa package.
config TVHEADEND_CONSTCW
bool "CCW"
depends on TVHEADEND_CSA
default TVHEADEND_CSA
help
Support Constant Control Word.
config TVHEADEND_CAPMT
bool "CWC capmt client"
depends on TVHEADEND_CSA
default n
help
Support Control Word Client capmt (Linux Network DVBAPI) protocol.
config TVHEADEND_NEWCAMD
bool "CWC newcamd client"
depends on TVHEADEND_CSA
default n
help
Support Control Word Client newcamd protocol.
config TVHEADEND_CCCAM
bool "CCCam client"
depends on TVHEADEND_CSA
default n
comment "DVB descrambling and some codecs are only available with BUILD_PATENTED."
depends on PACKAGE_tvheadend
depends on !BUILD_PATENTED
## Transcoding | Uncomment these options.
##comment "Transcoding and codecs"
## depends on PACKAGE_tvheadend
##
##config TVHEADEND_LIBFFMPEG
## bool "ffmpeg transcoding"
## depends on PACKAGE_tvheadend
## depends on BUILD_PATENTED
## select PACKAGE_libffmpeg-full
## default n
## help
## Use ffmpeg libraries for transcoding.
##
##config TVHEADEND_LIBX264
## bool "x264"
## depends on PACKAGE_tvheadend
## depends on BUILD_PATENTED
## select PACKAGE_libx264
## default n
## help
## Make x264 video codec available for transcoding. Uses libx264 package.
##
##config TVHEADEND_LIBX265
## bool "x265"
## depends on PACKAGE_tvheadend
## depends on BUILD_PATENTED
## default n
## help
## Make x265 video codec available for transcoding. Uses static (built-in) libx265.
##
##config TVHEADEND_LIBVPX
## bool "VP8, VP9"
## depends on PACKAGE_tvheadend
## select PACKAGE_libvpx
## default n
## help
## Make VP8 and VP9 video codecs available for transcoding. Uses libvpx package.
##
##config TVHEADEND_LIBTHEORA
## bool "Theora"
## depends on PACKAGE_tvheadend
## select PACKAGE_libtheora
## default n
## help
## Make Theora video codec available for transcoding. Uses libtheora package.
##
##config TVHEADEND_LIBFDKAAC
## bool "AAC"
## depends on PACKAGE_tvheadend
## depends on BUILD_PATENTED
## select PACKAGE_fdk-aac
## default n
## help
## Make AAC audio codec available for transcoding. Uses fdk-aac package.
##
##config TVHEADEND_LIBVORBIS
## bool "Vorbis"
## depends on PACKAGE_tvheadend
## select PACKAGE_libvorbis
## default n
## help
## Make Vorbis audio codec available for transcoding. Uses libvorbis package.
##
##config TVHEADEND_LIBOPUS
## bool "Opus"
## depends on PACKAGE_tvheadend
## select PACKAGE_libopusenc
## default n
## help
## Make Opus audio codec available for transcoding. Uses libopusenc package.
|