Ticket #1769: patch.diff

File patch.diff, 889 bytes (added by Mark.Buechler@…, 19 years ago)

The patch..

Line 
1*** libs/libmythtv/tv_rec.cpp.orig Wed May 3 20:15:03 2006
2--- libs/libmythtv/tv_rec.cpp Wed May 3 20:08:09 2006
3*************** bool TVRec::SetupDTVSignalMonitor(void)
4*** 1653,1661 ****
5 // Check if this is an DVB channel
6 int progNum = channel->GetProgramNumber();
7 #ifdef USING_DVB
8! uint netid = channel->GetOriginalNetworkID();
9! uint tsid = channel->GetTransportID();
10! if (netid && tsid && progNum >= 0)
11 {
12 uint neededVideo = 0;
13 uint neededAudio = 0;
14--- 1653,1661 ----
15 // Check if this is an DVB channel
16 int progNum = channel->GetProgramNumber();
17 #ifdef USING_DVB
18! int netid = channel->GetOriginalNetworkID();
19! int tsid = channel->GetTransportID();
20! if (netid > 0 && tsid > 0 && progNum >= 0)
21 {
22 uint neededVideo = 0;
23 uint neededAudio = 0;