From 280622c027d91a2992b4cc5439b5beca3de4600a Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 20 Aug 2013 11:38:12 -0700 Subject: [PATCH] Bump max frame duration to 80 ms (12.5 FPS). --- src/protocols/rdp/client.h | 2 +- src/protocols/vnc/client.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/protocols/rdp/client.h b/src/protocols/rdp/client.h index d067ac60..c83f882c 100644 --- a/src/protocols/rdp/client.h +++ b/src/protocols/rdp/client.h @@ -54,7 +54,7 @@ /** * The maximum duration of a frame in milliseconds. */ -#define GUAC_RDP_FRAME_DURATION 30 +#define GUAC_RDP_FRAME_DURATION 80 /** * Client data that will remain accessible through the guac_client. diff --git a/src/protocols/vnc/client.h b/src/protocols/vnc/client.h index 6e906b68..8b19ed83 100644 --- a/src/protocols/vnc/client.h +++ b/src/protocols/vnc/client.h @@ -47,7 +47,7 @@ /** * The maximum duration of a frame in milliseconds. */ -#define GUAC_VNC_FRAME_DURATION 30 +#define GUAC_VNC_FRAME_DURATION 80 extern char* __GUAC_CLIENT;