xfreerdp-server: adjust capture settings for better performance

This commit is contained in:
Marc-André Moreau 2012-02-01 22:40:36 -05:00
parent abad646414
commit 0c7703d293
2 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ void* xf_monitor_updates(void* param)
pthread_detach(pthread_self());
wait_interval = (1000000 / xfp->fps) / 16;
wait_interval = (1000000 / 2500);
while (1)
{

View File

@ -289,7 +289,7 @@ void xf_peer_init(freerdp_peer* client)
xfp = (xfPeerContext*) client->context;
xfp->fps = 48;
xfp->fps = 24;
xfp->thread = 0;
xfp->activations = 0;
xfp->event_queue = xf_event_queue_new();