Skip to content

Commit

Permalink
#835: fix server-side queue level accounting
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@14312 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Oct 28, 2016
1 parent 705a01f commit 252d75a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/server/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ def update_av_sync_delay_total(self):
cinfo = ""
if ss:
try:
encoder_latency = ss.last_info.get("queue", {}).get("cur", 0)
encoder_latency = ss.info.get("queue", {}).get("cur", 0)
avsynclog("server side queue level: %s", encoder_latency)
from xpra.sound.gstreamer_util import ENCODER_LATENCY
encoder_latency = ENCODER_LATENCY.get(ss.codec, 0)
Expand Down

0 comments on commit 252d75a

Please sign in to comment.