From 42e9a6153979eea7d05ceaa93c0a61fcfad09c98 Mon Sep 17 00:00:00 2001 From: Etoh Date: Mon, 9 Sep 2013 19:20:28 +0100 Subject: [PATCH] Set different duration threshold to 2.5sec --- syncplay/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syncplay/constants.py b/syncplay/constants.py index cd2edcf..bbb7885 100644 --- a/syncplay/constants.py +++ b/syncplay/constants.py @@ -9,11 +9,11 @@ DEFAULT_CONFIG_NAME = ".syncplay" #Changing these might be ok REWIND_THRESHOLD = 4 -SEEK_THRESHOLD = 2.5 +SEEK_THRESHOLD = 1 SLOWDOWN_RATE = 0.95 SLOWDOWN_KICKIN_THRESHOLD = 1.5 SLOWDOWN_RESET_THRESHOLD = 0.1 -DIFFFERENT_DURATION_THRESHOLD = 1 +DIFFFERENT_DURATION_THRESHOLD = 2.5 PROTOCOL_TIMEOUT = 12.5 RECONNECT_RETRIES = 10 SERVER_STATE_INTERVAL = 1