Commit a9e4ad23 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Linux DVB: print frequencies and symbol rates in debug

parent 65574801
...@@ -281,6 +281,14 @@ dvb_device_t *dvb_open (vlc_object_t *obj, bool tune) ...@@ -281,6 +281,14 @@ dvb_device_t *dvb_open (vlc_object_t *obj, bool tune)
msg_Dbg (obj, "using frontend: %s", d->info.name); msg_Dbg (obj, "using frontend: %s", d->info.name);
msg_Dbg (obj, " type %u, capabilities 0x%08X", d->info.type, msg_Dbg (obj, " type %u, capabilities 0x%08X", d->info.type,
d->info.caps); d->info.caps);
msg_Dbg (obj, " frequencies %10"PRIu32" to %10"PRIu32,
d->info.frequency_min, d->info.frequency_max);
msg_Dbg (obj, " (%"PRIu32" tolerance, %"PRIu32" per step)",
d->info.frequency_tolerance, d->info.frequency_stepsize);
msg_Dbg (obj, " bauds rates %10"PRIu32" to %10"PRIu32,
d->info.symbol_rate_min, d->info.symbol_rate_max);
msg_Dbg (obj, " (%"PRIu32" tolerance)",
d->info.symbol_rate_tolerance);
d->ca = dvb_open_node (dirfd, device, "ca", O_RDWR); d->ca = dvb_open_node (dirfd, device, "ca", O_RDWR);
if (d->ca == -1) if (d->ca == -1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment