[mythtv-commits] Ticket #10900: recording fails with "TVRecEvent dtvmultiplex.cpp:323 (ParseTuningParams) DTVMux: ParseTuningParams -- Unknown tuner type" with CableCard activated in HDHomerun Prime
MythTV
noreply at mythtv.org
Sun Jul 29 16:54:31 UTC 2012
#10900: recording fails with "TVRecEvent dtvmultiplex.cpp:323 (ParseTuningParams)
DTVMux: ParseTuningParams -- Unknown tuner type" with CableCard activated
in HDHomerun Prime
----------------------------------+----------------------------
Reporter: dlbulk-mythtv@… | Owner: danielk
Type: Bug Report - General | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Recording | Version: 0.25-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
----------------------------------+----------------------------
Comment (by dlbulk-mythtv@…):
Here is one fix. I have tested it on a system with a mix of different QAM
tuners.
{{{
--- libs/libmythtv/dtvchannel.cpp.org 2012-04-10 00:44:11.000000000
-0700
+++ libs/libmythtv/dtvchannel.cpp 2012-07-23 22:17:37.548227944
-0700
@@ -259,7 +259,9 @@
frequency = (freqid.toUInt() + finetune) * 1000;
mplexid = 0;
}
- bool isFrequency = (frequency > 10000000);
+
+ // do frequency tuning only if we cannot handle vchannel
+ bool isFrequency = (DTVTunerType::kTunerTypeOCUR != tunerType &&
(frequency > 10000000));
bool hasTuneToChan =
!(*it)->tuneToChannel.isEmpty() && (*it)->tuneToChannel !=
"Undefined";
}}}
--
Ticket URL: <http://code.mythtv.org/trac/ticket/10900#comment:8>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
More information about the mythtv-commits
mailing list