Skip to content

Commit

Permalink
TEMP:Rendermanager: add skip frame debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Portisch committed Jan 10, 2025
1 parent 94c09e5 commit 18d8886
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions xbmc/cores/VideoPlayer/VideoRenderers/RenderManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1235,6 +1235,11 @@ void CRenderManager::PrepareNextRender()
if (renderPts < m_Queue[*iter].pts + x * frametime)
break;
lateframes++;

CLog::LogFC(LOGDEBUG, LOGAVTIMING,
"{:d}: {:.3f} < {:.3f} + {:.2f} * {:.3f}",
lateframes, renderPts / DVD_TIME_BASE, m_Queue[*iter].pts / DVD_TIME_BASE, x, frametime);

idx = *iter;
++iter;
}
Expand Down

0 comments on commit 18d8886

Please sign in to comment.