diff options
author | Corentin Chary <corentincj@iksaif.net> | 2010-05-19 09:24:02 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-06-01 12:53:09 -0500 |
commit | 8a0f0d0ca343e406aab7161c883187f1d2b85d89 (patch) | |
tree | 862d586623312e6a0dbd559c3af211d137041c0a /vnc.c | |
parent | a9f20d31a8332ea4d6a0c90b9731f11a51cff6db (diff) |
vnc: explain why set_encodings loop is reversed
Add a small comment to explain why we need to start from
the end of the array to set the right prefered encoding.
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vnc.c')
-rw-r--r-- | vnc.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1649,6 +1649,11 @@ static void set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings) vs->tight_quality = 9; vs->absolute = -1; + /* + * Start from the end because the encodings are sent in order of preference. + * This way the prefered encoding (first encoding defined in the array) + * will be set at the end of the loop. + */ for (i = n_encodings - 1; i >= 0; i--) { enc = encodings[i]; switch (enc) { |