Skip to content
Snippets Groups Projects
Commit 9f643ec0 authored by Corentin Chary's avatar Corentin Chary Committed by Anthony Liguori
Browse files

vnc: adjust compression zstream level


Adjust zlib compression level if needed by calling deflateParams.

Signed-off-by: default avatarCorentin Chary <corentincj@iksaif.net>
Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
parent b05ad290
No related branches found
No related tags found
No related merge requests found
......@@ -83,10 +83,17 @@ static int vnc_zlib_stop(VncState *vs)
return -1;
}
vs->zlib_level = vs->tight_compression;
zstream->opaque = vs;
}
// XXX what to do if tight_compression changed in between?
if (vs->tight_compression != vs->zlib_level) {
if (deflateParams(zstream, vs->tight_compression,
Z_DEFAULT_STRATEGY) != Z_OK) {
return -1;
}
vs->zlib_level = vs->tight_compression;
}
// reserve memory in output buffer
buffer_reserve(&vs->output, vs->zlib.offset + 64);
......
......@@ -178,6 +178,7 @@ struct VncState
Buffer zlib;
Buffer zlib_tmp;
z_stream zlib_stream;
int zlib_level;
Notifier mouse_mode_notifier;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment