diff options
author | Pierre Ossman <ossman@cendio.se> | 2014-03-17 14:35:51 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2014-07-07 14:42:08 +0200 |
commit | 7b5c069d2e7eaa1748507a03697c14900258e507 (patch) | |
tree | 245936793e9607ce98dd89e98c1fdd0ac6b2d3ce /common/rfb/TightDecoder.h | |
parent | 65ad3224e920deecb91a3c28e15341c8584a372c (diff) | |
download | tigervnc-7b5c069d2e7eaa1748507a03697c14900258e507.tar.gz tigervnc-7b5c069d2e7eaa1748507a03697c14900258e507.zip |
Push encoding specific formats into the encoders and decoders
Keep the generic stream classes clean and general.
Diffstat (limited to 'common/rfb/TightDecoder.h')
-rw-r--r-- | common/rfb/TightDecoder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/rfb/TightDecoder.h b/common/rfb/TightDecoder.h index 0b915f92..18b01f8a 100644 --- a/common/rfb/TightDecoder.h +++ b/common/rfb/TightDecoder.h @@ -33,6 +33,8 @@ namespace rfb { virtual void readRect(const Rect& r, CMsgHandler* handler); private: + rdr::U32 readCompact(rdr::InStream* is); + void tightDecode8(const Rect& r); void tightDecode16(const Rect& r); void tightDecode32(const Rect& r); |