vnc-enc-tight.c (bc210eb163b162ff2e94e5c8f4307715731257f8) vnc-enc-tight.c (7b1b5d191385ca52e96caae2a05c64f3a63855d9)
1/*
2 * QEMU VNC display driver: tight encoding
3 *
4 * From libvncserver/libvncserver/tight.c
5 * Copyright (C) 2000, 2001 Const Kaplinsky. All Rights Reserved.
6 * Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
7 *
8 * Copyright (C) 2010 Corentin Chary <corentin.chary@gmail.com>

--- 31 unchanged lines hidden (view full) ---

40#include <png.h>
41#endif
42#ifdef CONFIG_VNC_JPEG
43#include <stdio.h>
44#include <jpeglib.h>
45#endif
46
47#include "bswap.h"
1/*
2 * QEMU VNC display driver: tight encoding
3 *
4 * From libvncserver/libvncserver/tight.c
5 * Copyright (C) 2000, 2001 Const Kaplinsky. All Rights Reserved.
6 * Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
7 *
8 * Copyright (C) 2010 Corentin Chary <corentin.chary@gmail.com>

--- 31 unchanged lines hidden (view full) ---

40#include <png.h>
41#endif
42#ifdef CONFIG_VNC_JPEG
43#include <stdio.h>
44#include <jpeglib.h>
45#endif
46
47#include "bswap.h"
48#include "qint.h"
48#include "qapi/qmp/qint.h"
49#include "vnc.h"
50#include "vnc-enc-tight.h"
51#include "vnc-palette.h"
52
53/* Compression level stuff. The following array contains various
54 encoder parameters for each of 10 compression levels (0..9).
55 Last three parameters correspond to JPEG quality levels (0..9). */
56

--- 1639 unchanged lines hidden ---
49#include "vnc.h"
50#include "vnc-enc-tight.h"
51#include "vnc-palette.h"
52
53/* Compression level stuff. The following array contains various
54 encoder parameters for each of 10 compression levels (0..9).
55 Last three parameters correspond to JPEG quality levels (0..9). */
56

--- 1639 unchanged lines hidden ---