check can be also disabled for given service using this
column.
+ <dt>Priority
+ <dd>Define priority (range 0-10) for this service. The higher value means more preferred.
+ Note that this value is _added_ to the input (tuner) priority.
+ Take this in account when you set the input priorities.
+
<dt>Channel
<dd>The channel to which the service is mapped
.rend = service_class_channel_rend,
.opts = PO_NOSAVE
},
+ {
+ .type = PT_INT,
+ .id = "priority",
+ .name = "Priority (0-10)",
+ .off = offsetof(service_t, s_prio),
+ },
{
.type = PT_BOOL,
.id = "encrypted",
{
service_instance_t *si;
+ prio += MAX(0, MIN(10, s->s_prio));
+
/* Existing */
TAILQ_FOREACH(si, sil, si_link)
if(si->si_s == s && si->si_instance == instance)