Skip to content

Commit

Permalink
VideoPlayer: drop AE chache from displayed aq (codec screen)
Browse files Browse the repository at this point in the history
  • Loading branch information
FernetMenta authored and popcornmix committed Jan 16, 2016
1 parent 2daec37 commit ea2ccbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/VideoPlayer/VideoPlayerAudio.cpp
Expand Up @@ -463,7 +463,7 @@ void CVideoPlayerAudio::OnStartup()
void CVideoPlayerAudio::UpdatePlayerInfo()
{
std::ostringstream s;
s << "aq:" << std::setw(2) << std::min(99,m_messageQueue.GetLevel() + MathUtils::round_int(100.0/8.0*m_dvdAudio.GetCacheTime())) << "%";
s << "aq:" << std::setw(2) << std::min(99,m_messageQueue.GetLevel()) << "%";
s << ", Kb/s:" << std::fixed << std::setprecision(2) << (double)GetAudioBitrate() / 1024.0;

//print the inverse of the resample ratio, since that makes more sense
Expand Down

0 comments on commit ea2ccbb

Please sign in to comment.