neatvnc/src/zrle.c

298 lines
7.2 KiB
C
Raw Normal View History

#include "rfb-proto.h"
2019-08-25 16:40:59 +00:00
#include "bitmap.h"
#include "util.h"
#include "vec.h"
#include <stdint.h>
#include <unistd.h>
#include <stdlib.h>
#include <endian.h>
#include <assert.h>
#include <zlib.h>
2019-08-25 16:40:59 +00:00
#include <uv.h>
#include <pixman.h>
#define POPCOUNT(x) __builtin_popcount(x)
2019-08-17 20:49:11 +00:00
struct bitmap;
size_t bitmap_popcount(struct bitmap*);
#define bitmap_for_each(b)
void pixel_format_into_native(struct rfb_pixel_format *fmt)
{
#if __BYTE_ORDER__ == __LITTLE_ENDIAN__
if (!fmt->big_endian_flag)
return;
fmt->big_endian_flag = 0;
#else
if (fmt->big_endian_flag)
return;
fmt->big_endian_flag = 1;
#endif
fmt->red_shift = fmt->bits_per_pixel - fmt->red_shift;
fmt->green_shift = fmt->bits_per_pixel - fmt->green_shift;
fmt->blue_shift = fmt->bits_per_pixel - fmt->blue_shift;
}
void pixel32_to_cpixel(uint8_t *restrict dst,
const struct rfb_pixel_format* dst_fmt,
const uint32_t *restrict src,
const struct rfb_pixel_format* src_fmt,
size_t bytes_per_cpixel, size_t len)
{
2019-08-17 17:12:17 +00:00
assert(src_fmt->true_colour_flag);
assert(src_fmt->bits_per_pixel == 32);
assert(src_fmt->depth <= 32);
assert(dst_fmt->true_colour_flag);
assert(dst_fmt->bits_per_pixel <= 32);
assert(dst_fmt->depth <= 24);
assert(bytes_per_cpixel <= 3 && bytes_per_cpixel >= 1);
uint32_t src_red_shift = src_fmt->red_shift;
uint32_t src_green_shift = src_fmt->green_shift;
uint32_t src_blue_shift = src_fmt->blue_shift;
uint32_t dst_red_shift = dst_fmt->red_shift;
uint32_t dst_green_shift = dst_fmt->green_shift;
uint32_t dst_blue_shift = dst_fmt->blue_shift;
uint32_t src_red_max = src_fmt->red_max;
uint32_t src_green_max = src_fmt->green_max;
uint32_t src_blue_max = src_fmt->blue_max;
uint32_t dst_red_max = dst_fmt->red_max;
uint32_t dst_green_max = dst_fmt->green_max;
uint32_t dst_blue_max = dst_fmt->blue_max;
uint32_t src_red_bits = POPCOUNT(src_fmt->red_max);
uint32_t src_green_bits = POPCOUNT(src_fmt->green_max);
uint32_t src_blue_bits = POPCOUNT(src_fmt->blue_max);
uint32_t dst_red_bits = POPCOUNT(dst_fmt->red_max);
uint32_t dst_green_bits = POPCOUNT(dst_fmt->green_max);
uint32_t dst_blue_bits = POPCOUNT(dst_fmt->blue_max);
uint32_t dst_endian_correction;
#define CONVERT_PIXELS(cpx, px) \
{ \
uint32_t r, g, b; \
r = ((px >> src_red_shift) & src_red_max) << dst_red_bits \
>> src_red_bits << dst_red_shift; \
g = ((px >> src_green_shift) & src_green_max) << dst_green_bits \
>> src_green_bits << dst_green_shift; \
b = ((px >> src_blue_shift) & src_blue_max) << dst_blue_bits \
>> src_blue_bits << dst_blue_shift; \
cpx = r | g | b; \
}
switch (bytes_per_cpixel) {
case 3:
2019-08-17 17:12:17 +00:00
if (dst_fmt->bits_per_pixel == 32 && dst_fmt->depth <= 24) {
uint32_t min_dst_shift = dst_red_shift;
if (min_dst_shift > dst_green_shift)
min_dst_shift = dst_green_shift;
if (min_dst_shift > dst_blue_shift)
min_dst_shift = dst_blue_shift;
dst_red_shift -= min_dst_shift;
dst_green_shift -= min_dst_shift;
dst_blue_shift -= min_dst_shift;
}
dst_endian_correction = dst_fmt->big_endian_flag ? 16 : 0;
while (len--) {
uint32_t cpx, px = *src++;
CONVERT_PIXELS(cpx, px)
*dst++ = (cpx >> (0 ^ dst_endian_correction)) & 0xff;
*dst++ = (cpx >> 8) & 0xff;
*dst++ = (cpx >> (16 ^ dst_endian_correction)) & 0xff;
}
break;
case 2:
dst_endian_correction = dst_fmt->big_endian_flag ? 8 : 0;
while (len--) {
uint32_t cpx, px = *src++;
CONVERT_PIXELS(cpx, px)
*dst++ = (cpx >> (0 ^ dst_endian_correction)) & 0xff;
*dst++ = (cpx >> (8 ^ dst_endian_correction)) & 0xff;
}
break;
case 1:
while (len--) {
uint32_t cpx, px = *src++;
CONVERT_PIXELS(cpx, px)
*dst++ = cpx & 0xff;
}
break;
default:
abort();
}
#undef CONVERT_PIXELS
}
2019-08-17 20:49:11 +00:00
void zrle_encode_tile(uint8_t *dst, const struct rfb_pixel_format *dst_fmt,
const uint32_t *src,
const struct rfb_pixel_format *src_fmt,
int stride, int width, int height)
{
int bytes_per_cpixel = dst_fmt->depth / 8;
dst[0] = 0; /* Sub-encoding is raw pixel data */
2019-08-17 20:49:11 +00:00
for (int y = 0; y < height; ++y)
2019-08-27 18:17:33 +00:00
pixel32_to_cpixel(dst + 1 + width * y * bytes_per_cpixel,
dst_fmt, src + stride * y,
2019-08-17 20:49:11 +00:00
src_fmt, bytes_per_cpixel, width);
}
int zrle_encode_box(uv_stream_t *stream, const struct rfb_pixel_format *dst_fmt,
uint8_t *src, const struct rfb_pixel_format *src_fmt,
2019-08-25 19:17:24 +00:00
int x, int y, int stride, int width, int height)
{
2019-08-25 16:40:59 +00:00
int r = -1;
int zr = Z_STREAM_ERROR;
int bytes_per_cpixel = dst_fmt->depth / 8;
int chunk_size = 1 + bytes_per_cpixel * 64 * 64;
2019-08-25 16:40:59 +00:00
z_stream zs = { 0 };
2019-08-17 20:49:11 +00:00
2019-08-25 16:40:59 +00:00
struct vec out;
uint8_t *in;
2019-08-17 20:49:11 +00:00
2019-08-25 16:40:59 +00:00
in = malloc(chunk_size);
if (!in)
goto failure;
2019-08-27 18:17:33 +00:00
if (vec_init(&out, bytes_per_cpixel * width * height * 2) < 0)
2019-08-25 16:40:59 +00:00
goto failure;
2019-08-17 20:49:11 +00:00
2019-08-25 16:40:59 +00:00
r = deflateInit(&zs, Z_DEFAULT_COMPRESSION);
if (r != Z_OK)
2019-08-17 20:49:11 +00:00
goto failure;
2019-08-25 16:40:59 +00:00
/* Reserve space for size */
vec_append_zero(&out, 4);
int n_tiles = UDIV_UP(width, 64) * UDIV_UP(height, 64);
for (int i = 0; i < n_tiles; ++i) {
2019-08-25 19:17:24 +00:00
int tile_x = x + (i % UDIV_UP(width, 64)) * 64;
int tile_y = y + (i / UDIV_UP(width, 64)) * 64;
int tile_width = width - tile_x >= 64 ? 64 : width - tile_x;
int tile_height = height - tile_y >= 64 ? 64 : height - tile_y;
printf("Encoding tile @ %dx%d. width: %d, height: %d\n", tile_x,
tile_y, tile_width, tile_height);
2019-08-25 16:40:59 +00:00
zrle_encode_tile(in, dst_fmt,
2019-08-25 19:17:24 +00:00
((uint32_t*)src) + tile_x + tile_y * width,
src_fmt, stride, tile_width, tile_height);
2019-08-25 16:40:59 +00:00
zs.next_in = in;
2019-08-27 18:17:33 +00:00
zs.avail_in = 1 + tile_width * tile_height * bytes_per_cpixel;
2019-08-25 16:40:59 +00:00
int flush = (i == n_tiles - 1) ? Z_FINISH : Z_NO_FLUSH;
2019-08-25 16:40:59 +00:00
do {
2019-08-27 18:17:33 +00:00
/*
2019-08-25 16:40:59 +00:00
r = vec_reserve(&out, out.len + chunk_size);
if (r < 0)
goto failure;
2019-08-27 18:17:33 +00:00
*/
2019-08-25 16:40:59 +00:00
2019-08-27 18:17:33 +00:00
zs.next_out = ((Bytef*)out.data) + out.len;
2019-08-25 16:40:59 +00:00
zs.avail_out = out.cap - out.len;
zr = deflate(&zs, flush);
assert(zr != Z_STREAM_ERROR);
2019-08-27 18:17:33 +00:00
out.len = out.cap - zs.avail_out;
2019-08-25 16:40:59 +00:00
} while (zs.avail_out == 0);
assert(zs.avail_in == 0);
}
assert(zr == Z_STREAM_END);
deflateEnd(&zs);
uint32_t *out_size = out.data;
2019-08-27 18:17:33 +00:00
*out_size = htonl(out.len - 8);
printf("Sending %lu bytes\n", out.len - 4);
2019-08-25 16:40:59 +00:00
2019-08-27 18:17:33 +00:00
r = vnc__write(stream, out.data, out.len - 4, NULL);
2019-08-25 16:40:59 +00:00
failure:
2019-08-27 18:17:33 +00:00
// vec_destroy(&out);
2019-08-25 16:40:59 +00:00
free(in);
return r;
#undef CHUNK
}
int zrle_encode_frame(uv_stream_t *stream,
const struct rfb_pixel_format *dst_fmt,
uint8_t *src,
const struct rfb_pixel_format *src_fmt,
int width, int height,
struct pixman_region16 *region)
2019-08-25 16:40:59 +00:00
{
int rc = -1;
int n_rects = 0;
struct pixman_box16 *box = pixman_region_rectangles(region, &n_rects);
if (n_rects > UINT16_MAX) {
box = pixman_region_extents(region);
n_rects = 1;
}
2019-08-25 16:40:59 +00:00
struct rfb_server_fb_update_msg head = {
.type = RFB_SERVER_TO_CLIENT_FRAMEBUFFER_UPDATE,
.n_rects = htons(n_rects),
2019-08-25 16:40:59 +00:00
};
rc = vnc__write(stream, &head, sizeof(head), NULL);
if (rc < 0)
return -1;
for (int i = 0; i < n_rects; ++i) {
int x = box[i].x1;
int y = box[i].y1;
2019-08-25 19:10:35 +00:00
int box_width = box[i].x2 - x;
int box_height = box[i].y2 - y;
struct rfb_server_fb_rect rect = {
.encoding = htonl(RFB_ENCODING_ZRLE),
2019-08-25 19:10:35 +00:00
.x = htons(x),
.y = htons(y),
.width = htons(box_width),
.height = htons(box_height),
};
2019-08-25 19:10:35 +00:00
rc = vnc__write(stream, &rect, sizeof(rect), NULL);
2019-08-25 16:40:59 +00:00
if (rc < 0)
return -1;
2019-08-25 16:40:59 +00:00
rc = zrle_encode_box(stream, dst_fmt, src, src_fmt, x, y,
2019-08-25 19:17:24 +00:00
width, box_width, box_height);
if (rc < 0)
return -1;
2019-08-25 16:40:59 +00:00
}
return 0;
}