Feature #300
[patch] report signal quality in htsp
Start date:
Due date:
% Done:
0%
Estimated time:
Description
this patch reports the signal quality of a subscription via htsp. only the code for DVB devices is added, the others are marked with TODO
Files
History
Updated by Lars Op den Kamp - about 14 years ago
I'll have a look at integrating this in dvb_fe later this week so the ioctl call doesn't block the outgoing message.
the other patch (#299) should be fine
Updated by Lars Op den Kamp - about 14 years ago
hmm can't delete files in trac and I uploaded the patch twice
Updated by ruud - about 14 years ago
Hi, can confirm that this patch is working correctly and adds the advertised feature to tvheadend.
Updated by Lars Op den Kamp - about 14 years ago
noticed I forgot a break statement in src/transports.c
switch (current_transport->tht_type)
{
case TRANSPORT_DVB:
dvb_transport_get_signal_status(current_transport, status);
case TRANSPORT_V4L:
//TODO add signal status from a V4L adapter
break;
case TRANSPORT_IPTV:
//TODO add signal status from an IPTV adapter
break;
}
there should be a break; after dvb_transport_get_signal_status of course.