mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-08-09 09:30:24 +00:00
red_worker: fix for stuck display_channel over WAN (jpeg_enabled=true)
The image descriptor flags shouldn't be copied as is from the flags that were set by the driver. Specifically, the CACHE_ME flag shouldn't be copied, since it is possible that (a) the image won't be cached (b) the image is already cached, but in its lossy version, and we may want to set the bit for CACHE_REPLACE_ME, in order to cache it in its lossless version. In case (b), the client first looks for the CACHE_ME flag, and only if it is not set it looks for CACHE_REPLACE_ME (see canvas_base.c). Since both flags where set, the client ignored REPLACE_ME, and didn't turned off the lossy flag of the cach item. Then, when a request from this lossles item reached the client (FROM_CACHE_LOSSLESS), the client display channel waited endlessly for the lossless version of the image.
This commit is contained in:
parent
648117544f
commit
b83c0fbf7f
@ -6789,6 +6789,10 @@ static FillBitsType fill_bits(DisplayChannelClient *dcc, SpiceMarshaller *m,
|
||||
}
|
||||
|
||||
image.descriptor = simage->descriptor;
|
||||
image.descriptor.flags = 0;
|
||||
if (simage->descriptor.flags & SPICE_IMAGE_FLAGS_HIGH_BITS_SET) {
|
||||
image.descriptor.flags = SPICE_IMAGE_FLAGS_HIGH_BITS_SET;
|
||||
}
|
||||
|
||||
if ((simage->descriptor.flags & SPICE_IMAGE_FLAGS_CACHE_ME)) {
|
||||
int lossy_cache_item;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user