diff options
author | Pierre Ossman <ossman@cendio.se> | 2014-07-09 16:44:11 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2014-07-14 16:03:41 +0200 |
commit | 0c9bd4b0ba28f5aab8b1f3e2eb8d83e01915e2b8 (patch) | |
tree | 500f61ee230d30fa1f8e955214c698e86b69e2f4 /common/rfb/TightDecoder.cxx | |
parent | 126e56420e47d72cc950d03976ee57d1efda436e (diff) | |
download | tigervnc-0c9bd4b0ba28f5aab8b1f3e2eb8d83e01915e2b8.tar.gz tigervnc-0c9bd4b0ba28f5aab8b1f3e2eb8d83e01915e2b8.zip |
Use PixelBuffer objects as the interface for encoders and decoders
This avoid a lot of unnecessary middle men. This also pushes the
responsibility for pixel format conversion into the encoders and
decoders. The new bufferFromBuffer() is used for direct conversion,
rather than PixelTransformer/TransImageGetter.
Diffstat (limited to 'common/rfb/TightDecoder.cxx')
-rw-r--r-- | common/rfb/TightDecoder.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/rfb/TightDecoder.cxx b/common/rfb/TightDecoder.cxx index bfc3352b..5f4142b4 100644 --- a/common/rfb/TightDecoder.cxx +++ b/common/rfb/TightDecoder.cxx @@ -19,7 +19,7 @@ */ #include <rfb/CMsgReader.h> #include <rfb/CConnection.h> -#include <rfb/CMsgHandler.h> +#include <rfb/PixelBuffer.h> #include <rfb/TightDecoder.h> using namespace rfb; @@ -44,12 +44,12 @@ TightDecoder::~TightDecoder() { } -void TightDecoder::readRect(const Rect& r, CMsgHandler* handler) +void TightDecoder::readRect(const Rect& r, ModifiablePixelBuffer* pb) { is = conn->getInStream(); - this->handler = handler; - clientpf = handler->getPreferredPF(); - serverpf = handler->cp.pf(); + this->pb = pb; + clientpf = pb->getPF(); + serverpf = conn->cp.pf(); if (clientpf.equal(serverpf)) { /* Decode directly into the framebuffer (fast path) */ |