Skip to content

Commit

Permalink
MythPlayer: Adjust the sampling interval for the frame rate monitor.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Kendall committed Jun 10, 2011
1 parent 0c786de commit 0327b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/mythplayer.cpp
Expand Up @@ -2054,7 +2054,7 @@ void MythPlayer::EnableFrameRateMonitor(bool enable)
{
if (!output_jmeter)
return;
int rate = enable ? (video_frame_rate / 4) :
int rate = enable ? video_frame_rate :
VERBOSE_LEVEL_CHECK(VB_PLAYBACK) ? (video_frame_rate * 4) : 0;
output_jmeter->SetNumCycles(rate);
}
Expand Down

0 comments on commit 0327b78

Please sign in to comment.