Skip to content

Commit

Permalink
Do not overwrite modulation system in multiplex with value from tuner.
Browse files Browse the repository at this point in the history
A DVB-S multiplex can be received by a tuner configured for a DVB-S2 delivery system.
The removed line of code did overwrite the modulation system in
the multiplex with the delivery system currently configured in the tuner.
This caused the modulation system in all DVB-S/S2 multiplexes to be set to DVB-S2.

Refs #13014
  • Loading branch information
kmdewaal committed Apr 13, 2019
1 parent 28e98a8 commit 47c1d30
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion mythtv/libs/libmythtv/channelscan/channelscan_sm.cpp
Expand Up @@ -965,7 +965,6 @@ bool ChannelScanSM::UpdateChannelInfo(bool wait_until_complete)
TransportScanItem &item = *m_current;
item.m_tuning.m_frequency = item.freq_offset(m_current.offset());

item.m_tuning.m_mod_sys.Parse(m_inputName);
LOG(VB_CHANSCAN, LOG_DEBUG, LOC +
QString("%1(%2) m_inputName: %3 ").arg(__FUNCTION__).arg(__LINE__).arg(m_inputName) +
QString("m_mod_sys:%1 %2").arg(item.m_tuning.m_mod_sys).arg(item.m_tuning.m_mod_sys.toString()));
Expand Down

0 comments on commit 47c1d30

Please sign in to comment.