diff --git a/mythtv/libs/libmythtv/DVDRingBuffer.h b/mythtv/libs/libmythtv/DVDRingBuffer.h
diff --git a/mythtv/libs/libmythtv/tv_rec.cpp b/mythtv/libs/libmythtv/tv_rec.cpp
index a3141c1..806feb7 100644
a
|
b
|
bool TVRec::SetupDTVSignalMonitor(void) |
1666 | 1666 | bool fta = CardUtil::IgnoreEncrypted( |
1667 | 1667 | GetCaptureCardNum(), channel->GetCurrentInput()); |
1668 | 1668 | |
| 1669 | QString sistandard = dtvchan->GetSIStandard(); |
| 1670 | |
1669 | 1671 | // Check if this is an ATSC Channel |
1670 | 1672 | int major = dtvchan->GetMajorChannel(); |
1671 | 1673 | int minor = dtvchan->GetMinorChannel(); |
… |
… |
bool TVRec::SetupDTVSignalMonitor(void) |
1701 | 1703 | // Check if this is an DVB channel |
1702 | 1704 | int progNum = dtvchan->GetProgramNumber(); |
1703 | 1705 | #ifdef USING_DVB |
1704 | | int netid = dtvchan->GetOriginalNetworkID(); |
1705 | | int tsid = dtvchan->GetTransportID(); |
1706 | | if (netid > 0 && tsid > 0 && progNum >= 0) |
| 1706 | if (progNum >= 0 && sistandard == "dvb") |
1707 | 1707 | { |
| 1708 | int netid = dtvchan->GetOriginalNetworkID(); |
| 1709 | int tsid = dtvchan->GetTransportID(); |
| 1710 | |
1708 | 1711 | uint neededVideo = 0; |
1709 | 1712 | uint neededAudio = 0; |
1710 | 1713 | |