aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/TightDecoder.h
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2014-03-14 15:59:46 +0100
committerPierre Ossman <ossman@cendio.se>2014-07-14 16:03:42 +0200
commitc0397269fcab67e9acd4fdcbc29f24d79ed0ef39 (patch)
tree41ac251e5a595a37b832a61626723a89258bb018 /common/rfb/TightDecoder.h
parenta088f1ab3923482998174b9db8949cf06d0761af (diff)
downloadtigervnc-c0397269fcab67e9acd4fdcbc29f24d79ed0ef39.tar.gz
tigervnc-c0397269fcab67e9acd4fdcbc29f24d79ed0ef39.zip
Move image encoding logic into a central EncodeManager class
This allows us to apply a lot more server logic independently of which encoder is in use. Most of this class are things moved over from the Tight encoder.
Diffstat (limited to 'common/rfb/TightDecoder.h')
-rw-r--r--common/rfb/TightDecoder.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/common/rfb/TightDecoder.h b/common/rfb/TightDecoder.h
index 66fa9a0c..a44f7d85 100644
--- a/common/rfb/TightDecoder.h
+++ b/common/rfb/TightDecoder.h
@@ -64,17 +64,6 @@ namespace rfb {
PixelFormat serverpf;
bool directDecode;
};
-
- // Compression control
- const unsigned int rfbTightExplicitFilter = 0x04;
- const unsigned int rfbTightFill = 0x08;
- const unsigned int rfbTightJpeg = 0x09;
- const unsigned int rfbTightMaxSubencoding = 0x09;
-
- // Filters to improve compression efficiency
- const unsigned int rfbTightFilterCopy = 0x00;
- const unsigned int rfbTightFilterPalette = 0x01;
- const unsigned int rfbTightFilterGradient = 0x02;
}
#endif