Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
EIT Scanning: Parse for EIT even if the Audio and Video PIDs are encr…
…ypted.

Tommy Alander reported (and Daniel K diagnosed) an issue where a bit of code had been overlooked.  When EIT scanning MPEG channels, we correctly told the rec code to ignore encryption status when the tune was for EIT scanning.  That same block of code was missing from DVB tuning.  Add the missing code.

Fixes #9336.
  • Loading branch information
Robert McNamara committed Jun 15, 2011
1 parent 73e7ff6 commit 464e261
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mythtv/libs/libmythtv/tv_rec.cpp
Expand Up @@ -1826,6 +1826,12 @@ bool TVRec::SetupDTVSignalMonitor(bool EITscan)
SignalMonitor::kDVBSigMon_WaitForPos);
sm->SetRotorTarget(1.0f);

if (EITscan)
{
sm->GetStreamData()->SetVideoStreamsRequired(0);
sm->IgnoreEncrypted(true);
}

VERBOSE(VB_RECORD, LOC + "Successfully set up DVB table monitoring.");
return true;
}
Expand Down

0 comments on commit 464e261

Please sign in to comment.