summaryrefslogtreecommitdiffstats
path: root/server/lz4_encoder.c
Commit message (Collapse)AuthorAgeFilesLines
* LZ4: Send the original format with the compressed dataJavier Celaya2015-02-031-4/+5
|
* LZ4: Do not reverse bottom-up imagesJavier Celaya2015-02-031-7/+6
| | | | | | Reversing the bottom-up images in the server is not needed since Pixman, in the client, is able to deal with them. As a result, the previous code was more complex and wrong. This commit fixes and cleans it.
* LZ4: Fix encoder output sizeJavier Celaya2015-02-031-1/+2
|
* Add LZ4 compression support.Javier Celaya2014-12-021-0/+122
- Add lz4 encoder to compress an image of type LZ4 (see spice_common). - Add code in red_worker to use LZ4 when it is enabled, and the client supports it through its display capability, or fallback to LZ. - Add enable_lz4 switch in the configure script. Show LZ4 support at the end.