server: Move pixel format conversion out of do_client_update_fb

tight-scheduling-fix
Andri Yngvason 2020-09-26 22:17:02 +00:00
parent 7e2b4fef8c
commit add8d8e8db
1 changed files with 5 additions and 5 deletions

View File

@ -509,6 +509,11 @@ static void process_fb_update_requests(struct nvnc_client* client)
struct nvnc_fb* fb = client->server->display->buffer;
assert(fb);
if (!client->has_pixfmt) {
rfb_pixfmt_from_fourcc(&client->pixfmt, fb->fourcc_format);
client->has_pixfmt = true;
}
if (fb->width != client->known_width
|| fb->height != client->known_height)
send_desktop_resize(client, fb);
@ -1107,11 +1112,6 @@ static void do_client_update_fb(void* work)
enum rfb_encodings encoding = choose_frame_encoding(client);
if (!client->has_pixfmt) {
rfb_pixfmt_from_fourcc(&client->pixfmt, fb->fourcc_format);
client->has_pixfmt = true;
}
switch (encoding) {
case RFB_ENCODING_RAW:
raw_encode_frame(&update->frame, &client->pixfmt, fb,