Skip to content

Commit

Permalink
Fix scheduler affinity calculation for back to back recordings.
Browse files Browse the repository at this point in the history
  • Loading branch information
gigem committed Jul 14, 2016
1 parent 6e36814 commit 8b2d79d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions mythtv/programs/mythbackend/scheduler.cpp
Expand Up @@ -1150,11 +1150,8 @@ bool Scheduler::FindNextConflict(
{
if (debugConflicts)
msg += " no-overlap ";
if ((m_openEnd == openEndDiffChannel &&
p->GetChanID() == q->GetChanID()) ||
(m_openEnd == openEndAlways &&
mplexid_ok))
++affinity;
if (mplexid_ok)
++affinity;
continue;
}
}
Expand Down

0 comments on commit 8b2d79d

Please sign in to comment.