Tvheadend internals » History » Version 2
Andreas Smas, 2009-06-04 19:53
1 | 1 | Andreas Smas | This page is very much work-in-progress. |
---|---|---|---|
2 | |||
3 | = Nomenclature = |
||
4 | |||
5 | === Channel === |
||
6 | |||
7 | A channel is what's typically perceived as a TV-channel by ordinary people. A channel will receive data from one or many Transports. If Tvheadend has multiple DVB adapters, connected to the same or different networks, where the same channel exists, multiple transports will map to the same channel. |
||
8 | |||
9 | see: channel.[ch] |
||
10 | |||
11 | === Transport === |
||
12 | |||
13 | A transport is a specific source for a channel. |
||
14 | |||
15 | see: transport.[ch] |
||
16 | |||
17 | === Multiplex === |
||
18 | |||
19 | A Multiplex is analogous to a DVB MPEG Transport Stream. For a given Adapter, only one Multiplex can be received (i.e tuned) at the same time. |
||
20 | However, all transports on that particular multiplex can be decoded and fed further into Tvheadend. |
||
21 | |||
22 | see: dvb/dvb_multiplex.[ch] |
||
23 | |||
24 | === Adapter === |
||
25 | |||
26 | Represents a piece of hardware. |
||
27 | |||
28 | see: dvb/dvb_adapter.[ch] |
||
29 | |||
30 | === Subscription === |
||
31 | |||
32 | This is what temporary binds a transport to a channel when someone wants to receive data from it. |
||
33 | |||
34 | All subscriptions are sorted according to weight. Subscriptions with height weight will outrank lower weighted subscriptions. |
||
35 | |||
36 | If two subscriptions competes for the same resource (typically a DVB-adapter in order to tune a specific multiplex) the one with higher with will win. |
||
37 | Of course, a lower weighted subscription can "sneak" on a multiplex as long as the higher weighted subscription keeps it tuned. |
||
38 | 2 | Andreas Smas | |
39 | see: subscriptions.[ch] |