Ticket #12330: myth.patch
File myth.patch, 1.5 KB (added by , 10 years ago) |
---|
-
mythtv/libs/libmythtv/channelscan/channelscan_sm.cpp
old new void ChannelScanSM::HandleSDT(uint tsid, 432 432 SetFreesatAdditionalSI(true); 433 433 setOtherTables = true; 434 434 // The whole BAT & SDTo group comes round in 10s 435 otherTableTimeout = 10000;435 otherTableTimeout = 20000; 436 436 // Delay processing the SDT until we've seen BATs and SDTos 437 437 otherTableTime = timer.elapsed() + otherTableTimeout; 438 438 … … static void update_info(ChannelInsertInf 1068 1068 QString service_name = QString::null; 1069 1069 if (desc) 1070 1070 { 1071 #if 0 1071 1072 callsign = desc->ServiceShortName(); 1072 1073 if (callsign.trimmed().isEmpty()) 1073 1074 callsign = QString("%1-%2-%3") 1074 1075 .arg(ChannelUtil::GetUnknownCallsign()).arg(sdt->TSID()) 1075 1076 .arg(sdt->ServiceID(i)); 1077 #else 1078 callsign = desc->ServiceShortName(); 1079 if (callsign.trimmed().isEmpty()) { 1080 callsign = QString("%1-%2-%3") 1081 .arg(ChannelUtil::GetUnknownCallsign()).arg(sdt->TSID()) 1082 .arg(sdt->ServiceID(i)); 1083 } else { 1084 callsign = QString("%1-%2").arg(desc->ServiceShortName()).arg(sdt->ServiceID(i)); 1085 } 1086 #endif 1076 1087 1077 1088 service_name = desc->ServiceName(); 1078 1089 if (service_name.trimmed().isEmpty())