John Pullan skrev:

The attached patch and file allow full scanning for dvb-t channels in
various countries. (UK and Aus mainly).

dvbtypes.cpp need to be in libmythtv which is where the patch needs to
be applied.

I'd appreciate some testing from people, (not just dvb-t) since I've
touched just about all the ui in scanwiz, just to make sure I haven't
broken anything.



John,

I've tested this with DVB-S and unfortunately it seems to be broken. No obvious errors either - it just never gets any signal lock, and sadly I don't have time to debug it any further right now either. :-(

I do have an other suggestion for you though. The attached patch reorders the input fields in the QPSK panel in a more logical order to simplify input (at least I think so). With my DVB card I only need to change the three fields now to the left; the FEC and inversion (now to the right) works with the default ("auto").

--- old/scanwizard.cpp  2005-04-24 22:17:36.000000000 +0200
+++ new/scanwizard.cpp  2005-04-24 22:16:30.000000000 +0200
@@ -424,10 +424,10 @@
         VerticalConfigurationGroup *left=new 
VerticalConfigurationGroup(false,true);
         VerticalConfigurationGroup *right=new 
VerticalConfigurationGroup(false,true);
         left->addChild(pfrequency = new ScanFrequency());
+        left->addChild(ppolarity = new ScanPolarity());
         left->addChild(psymbolrate=new ScanSymbolRate());
-        left->addChild(pinversion=new ScanInversion());
         right->addChild(pfec=new ScanFec());
-        right->addChild(ppolarity = new ScanPolarity());
+        right->addChild(pinversion=new ScanInversion());
         addChild(left);
         addChild(right);     
     }
_______________________________________________
mythtv-dev mailing list
mythtv-dev@mythtv.org
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to