diff options
author | Pierre Ossman <ossman@cendio.se> | 2020-05-19 21:24:58 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2020-05-21 11:34:22 +0200 |
commit | 0cd533cf7f53daa157a9b7f6af2b9b72eeca5403 (patch) | |
tree | 5518f50f087b22ce47d572dc574b525e33572457 /common/rfb/JpegCompressor.h | |
parent | 186819080baea53410ae8d8100179a3874ac1e32 (diff) | |
download | tigervnc-0cd533cf7f53daa157a9b7f6af2b9b72eeca5403.tar.gz tigervnc-0cd533cf7f53daa157a9b7f6af2b9b72eeca5403.zip |
Remove special functions from JPEG compressor
We can do what we want with the standard methods.
Diffstat (limited to 'common/rfb/JpegCompressor.h')
-rw-r--r-- | common/rfb/JpegCompressor.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/common/rfb/JpegCompressor.h b/common/rfb/JpegCompressor.h index ab0f9f85..de201732 100644 --- a/common/rfb/JpegCompressor.h +++ b/common/rfb/JpegCompressor.h @@ -47,12 +47,6 @@ namespace rfb { void writeBytes(const void*, int); - inline rdr::U8* getstart() { return start; } - - inline virtual void overrun(int needed) { - return MemOutStream::overrun(needed); - } - private: struct jpeg_compress_struct *cinfo; |