From ea2ccbb880d3133b97ff39893027cf4937b43a99 Mon Sep 17 00:00:00 2001 From: Rainer Hochecker Date: Tue, 12 Jan 2016 11:04:35 +0100 Subject: [PATCH] VideoPlayer: drop AE chache from displayed aq (codec screen) --- xbmc/cores/VideoPlayer/VideoPlayerAudio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/cores/VideoPlayer/VideoPlayerAudio.cpp b/xbmc/cores/VideoPlayer/VideoPlayerAudio.cpp index a874732931bca..29d0625938a85 100644 --- a/xbmc/cores/VideoPlayer/VideoPlayerAudio.cpp +++ b/xbmc/cores/VideoPlayer/VideoPlayerAudio.cpp @@ -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