summaryrefslogtreecommitdiffstats
path: root/server/lz4_encoder.h
diff options
context:
space:
mode:
authorJavier Celaya <javier.celaya@flexvm.es>2015-01-26 17:22:48 +0100
committerChristophe Fergeau <cfergeau@redhat.com>2015-02-03 10:39:16 +0100
commit10c78a01978b621159dcbb4a2802e898e0f70b3a (patch)
treee92ed20bdf4d135756b38aae7b0143d67eb1543f /server/lz4_encoder.h
parent16412aa101fb681c5b6670cc6c0939ed010fbafd (diff)
downloadspice-10c78a01978b621159dcbb4a2802e898e0f70b3a.tar.gz
spice-10c78a01978b621159dcbb4a2802e898e0f70b3a.tar.xz
spice-10c78a01978b621159dcbb4a2802e898e0f70b3a.zip
LZ4: Send the original format with the compressed data
Diffstat (limited to 'server/lz4_encoder.h')
-rw-r--r--server/lz4_encoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lz4_encoder.h b/server/lz4_encoder.h
index 97b8dc85..f1de12a7 100644
--- a/server/lz4_encoder.h
+++ b/server/lz4_encoder.h
@@ -45,5 +45,5 @@ void lz4_encoder_destroy(Lz4EncoderContext *encoder);
/* returns the total size of the encoded data. */
int lz4_encode(Lz4EncoderContext *lz4, int height, int stride, uint8_t *io_ptr,
- unsigned int num_io_bytes, int top_down);
+ unsigned int num_io_bytes, int top_down, uint8_t format);
#endif