Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[linux-dvb] max. symbol rate



Hi everyone!

Today I turned around my dish some degrees to try Hotbird.
I used dtv_scan to create a channels.conf for VDR. So far everything looked
fine, but then I noticed that some transponders were missing. I checked out
www.lyngsat.com and found out, that these transponders (e.g. TP 110) are
using some 'exotic' symbol rates like 29000.
I wanted to create a channel from this transponder via the VDR osd, and
that's what this is all about: the maximum I was able to enter was 27500.
This is a very minor bug, but if someone cares about it, or just wants to be
sure, that you could tune such channels, though you really have no idea why
to watch EWTN or something :) here's a patch:

--- menu.c.old  Sun Jul 22 17:16:58 2001
+++ menu.c      Mon Jul 23 23:58:38 2001
@@ -542,5 +542,5 @@
      Add(new cMenuEditChrItem( tr("Polarization"), &data.polarization,
"hv"));
      Add(new cMenuEditIntItem( tr("Diseqc"),       &data.diseqc, 0, 10));
//TODO exact limits???
-     Add(new cMenuEditIntItem( tr("Srate"),        &data.srate, 22000,
27500)); //TODO exact limits - toggle???
+     Add(new cMenuEditIntItem( tr("Srate"),        &data.srate, 22000,
30000)); //TODO exact limits - toggle???
      Add(new cMenuEditIntItem( tr("Vpid"),         &data.vpid, 0, 0xFFFE));
      Add(new cMenuEditIntItem( tr("Apid1"),        &data.apid1, 0,
0xFFFE));


The reason why dtv_scan couldn't find channels on these transponders is due
to the transponders.dcl where these transponders are listed with a symbol
rate of 27500. I changed that for TP 110 to the right value and everything
worked as expected.

Enough for now, I'll keep looking for treasure on Hotbird :)

cya,
Ulrich Röder <dynamite@efr-net.de>



-- 
Info:
To unsubscribe send a mail to listar@linuxtv.org with "unsubscribe linux-dvb" as subject.



Home | Main Index | Thread Index