Wendy Seltzer wrote:
From today's cvs, I can't tune subchannels other than 1 in US HDTV.

I think I see the problem. The recently-applied patch (21-Jan) "ATSC major_minor channel selection patch from John Poet" is incorrect. It is confusing the major channel number with the FCC (broadcast) frequency. Can you try out the attached (untested) patch and see if it fixes the problem?

I actually don't believe we have the information in the current database
to do what he wants to do.  But when we switch ATSC over to the new DVB
schema, we should be able to fix this right.

-Doug
Index: libs/libmythtv/hdtvrecorder.cpp
===================================================================
RCS file: /var/lib/mythcvs/mythtv/libs/libmythtv/hdtvrecorder.cpp,v
retrieving revision 1.36
diff -u -r1.36 hdtvrecorder.cpp
--- libs/libmythtv/hdtvrecorder.cpp	21 Jan 2005 08:03:22 -0000	1.36
+++ libs/libmythtv/hdtvrecorder.cpp	27 Jan 2005 22:56:21 -0000
@@ -921,7 +921,7 @@
     int pos = freqid.find('-');
     if (pos != -1)
     {
-        desired_channel = atoi(freqid.left(pos));
+        desired_channel = -1;
         desired_subchannel = atoi(freqid.mid(pos+1).ascii());
     }
     else

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to